Skip to Main Content
jQuery Pocket Reference
book

jQuery Pocket Reference

by David Flanagan
December 2010
Intermediate to advanced content levelIntermediate to advanced
160 pages
3h 31m
English
O'Reilly Media, Inc.
Content preview from jQuery Pocket Reference

The jQuery.ajax() Function

All of jQuery’s Ajax utilities end up invoking jQuery.ajax()—the most complicated function in the entire library. jQuery.ajax() accepts just a single argument: an options object whose properties specify many details about how to perform the Ajax request. A call to jQuery.getScript(url,callback), for example, is equivalent to this jQuery.ajax() invocation:

jQuery.ajax({
    type: "GET",       // The HTTP request method.
    url: url,          // The URL of the data to fetch.
    data: null,        // Don't add any data to the URL.
    dataType:"script", // Execute response as a script.
    success: callback  // Call this function when done.
});

You can set these five fundamental options with jQuery.get() and jQuery.post(). jQuery.ajax() supports quite a few other options, however, if you invoke it directly. The options (including the basic five shown above) are explained in detail below.

Before we dive into the options, note that you can set defaults for any of these options by passing an options object to jQuery.ajaxSetup():

jQuery.ajaxSetup({
    // Abort all Ajax requests after 2 seconds
    timeout: 2000, 
    // Defeat browser cache by adding a timestamp to URL
    cache: false   
});

After running the code above, the specified timeout and cache options will be used for all Ajax requests (including high-level ones like jQuery.get() and the load() method) that do not specify their own values for these options.

While reading about jQuery’s many options and callbacks in the sections that follow, you may find it helpful ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

jQuery and JavaScript Phrasebook

jQuery and JavaScript Phrasebook

Brad Dayley
Beyond jQuery

Beyond jQuery

Ray Nicholus
Head First jQuery

Head First jQuery

Ryan Benedetti, Ronan Cranley

Publisher Resources

ISBN: 9781449398958Supplemental ContentErrata Page