About

jQuery, formally known as jQuery Core, is a cross-browser JavaScript library created by John Resig which provides abstractions for common client-side tasks such as DOM traversal, DOM manipulation, event handling, animation, and . jQuery also provides a platform to create plugins that extend jQuery's capabilities beyond those already provided by the core. jQuery is part of the jQuery Project.

Resources

Popular plugins

Other jQuery projects

Hello World

Showing Hello world! in the alert box on each link click after the DOM is ready:

$(document).ready(function() {
    $("a").click(function(event) {
        event.preventDefault();
        alert("Hello world!");
    });
});

When asking jQuery questions, you should:

  1. Read the jQuery API documentation carefully and search Stack Overflow for duplicates before asking.
  2. Isolate the problematic code and reproduce it in an online environment such as jsFiddle or JS Bin. However, be sure to include the problematic code in your question--don't just link to the online environment.
  3. Tag the question appropriately; always include , and use the other web development tags—, , —as applicable. The most popular plugins also have their own tags, like and ; for every other plugin include the tag.
  4. Indicate whether the version of the jQuery library used is not current, so that the answerer can provide version-appropriate solutions.
  5. Mention which browser the code is having problems on and what error messages, if any, were thrown by the browser.

Best Practices and Commonly Made Mistakes

Related Question: jQuery pitfalls to avoid

Remember to use $(document).ready

If your code is somehow manipulating the DOM, then you need to either wrap it in a $(document).ready(function() {...}); block or move it to the end of your HTML.

Cache your jQuery Objects and Chain Whenever Possible

The jQuery function $() is expensive. Calling it repeatedly is extremely inefficient. Avoid doing this:

$('.test').addClass('hello');
$('.test').css('color', 'orange');
$('.test').prop('title', 'Hello world');

Better, cache your jQuery object in a variable:

var $test = $('.test');

$test.addClass('hello');
$test.css('color', 'orange');
$test.prop('title', 'Hello world');

Best, chaining used to reduce repetition:

$('.test').addClass('hello').css('color', 'orange').prop('title', 'Hello world');

Variable Naming Conventions

jQuery wrapped variables are usually named starting with $ to distinguish them from standard JavaScript objects.

var $this = $(this);

Know Your DOM Properties and Functions

While one of the goals of jQuery is to abstract away the DOM, knowing DOM properties can be extremely useful. One of the most commonly made mistakes by those who learn jQuery without learning about the DOM is to Utilize the awesome power of jQuery to access properties of an element:

$('img').click(function() {
    $(this).attr('src');  // Bad!
});

In the above code, this refers to the element from which the click event handler was fired. The code above is both slow and verbose; the code below functions identically and is much shorter, faster and readable.

$('img').click(function() {
    this.src; // Much, much better
});

Idiomatic Syntax for Creating Elements

Although the following two examples seem to be functionally equivalent and syntactically correct, the first example is preferred:

$('<p>', {
    text: 'This is a ' + variable, 
    "class": 'blue slider', 
    title: variable, 
    id: variable + i
}).appendTo(obj);

By comparison, a string concatenation approach is much less readable and far more brittle:

$('<p class="blue slider" id="' + variable + i + '" title="' + variable + '">This is a ' + variable + '</p>').appendTo(obj);

While the first example will be slower than the second, the benefits of greater clarity will likely outweigh the nominal speed differences in all but the most performance-sensitive applications.

Moreover, the idiomatic syntax is robust against the injection of special characters. For instance, in the 2nd example, a quote character in variable would prematurely close the attributes. Doing the proper encoding by yourself remains possible even if not recommended because error prone.


Frequently asked questions

jQuery libraries

More information:

history|show excerpt|excerpt history