Khan Academy or Scratch Wikia

jQuery is a lightweight JavaScript library, made by John Resig.

Jquery

From jQuery.com:

jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. With a combination of versatility and extensibility, jQuery has changed the way that millions of people write JavaScript.

Sites with jQuery lessons[]

Featured users that know jQuery[]

Syntax[]

$(function() {
   $("element").method();
   $("element").method(function(param) {
        $("element").method(param);
   });
})