View on GitHub

reading-notes

What is jQuery?

jQuery takes a lot of common tasks that require many lines of JavaScript code to accomplish, and wraps them into methods that you can call with a single line of code.

jQuery is a JavaScript library.

jQuery Syntax:

$(selector).action().

Examples of jQuery Selectors :

jquery

The element Selector:

$(“#test”)

$(“.test”)

jQuery Event Methods:

An event represents the precise moment when something happens.

jQuery Syntax For Event Methods:

like this : $(“p”).click();

.click() is an event

The $(document).ready() method allows us to execute a function when the document is fully loaded.

jQuery - Add Elements:


How does pair programming work?

is an agile software development technique in which two programmers work together at one workstation. One, the driver, writes code while the other, the observer or navigator, reviews each line of code as it is typed in. The two programmers switch roles frequently.

pair

Why pair program?

benefit