Exploring additional options
The Ajax toolbox provided by jQuery is stocked well. We've covered several of the available options, but we've just scratched the surface. While there are too many variants to cover here, we will give an overview of some of the more prominent ways to customize Ajax communications.
The low-level Ajax method
We have seen several methods that all initiate Ajax transactions. Internally, jQuery maps each of these methods onto variants of the $.ajax()
global function. Rather than presuming one particular type of Ajax activity, this function accepts an object containing options that can be used to customize its behavior.
Our first example, Listing 6.1, loaded an HTML snippet using $('#dictionary').load('a.html')
. This action could instead be accomplished with $.ajax()
as follows:
$.ajax({ url: 'a.html', success: function(data) { $('#dictionary').html(data); } });
Listing 6.21
We see here that $.ajax()
takes a single object as its argument (or optionally a URL...