-
jQuery.ajax()
Perform an asynchronous HTTP (Ajax) request.
-
jQuery.ajaxPrefilter()
Handle custom Ajax options or modify existing options before each request is sent and before they are processed by
$.ajax(). -
deferred.done()
Add handlers to be called when the Deferred object is resolved.
-
deferred.fail()
Add handlers to be called when the Deferred object is rejected.
-
deferred.isRejected()
Determine whether a Deferred object has been rejected.
-
deferred.isResolved()
Determine whether a Deferred object has been resolved.
-
deferred.promise()
Return a Deferred's Promise object.
-
deferred.reject()
Reject a Deferred object and call any failCallbacks with the given
args. -
deferred.rejectWith()
Reject a Deferred object and call any failCallbacks with the given
contextandargs. -
deferred.resolve()
Resolve a Deferred object and call any doneCallbacks with the given
args. -
deferred.resolveWith()
Resolve a Deferred object and call any doneCallbacks with the given
contextandargs. -
deferred.then()
Add handlers to be called when the Deferred object is resolved or rejected.
-
jQuery.get()
Load data from the server using a HTTP GET request.
-
jQuery.getJSON()
Load JSON-encoded data from the server using a GET HTTP request.
-
jQuery.getScript()
Load a JavaScript file from the server using a GET HTTP request, then execute it.
-
jQuery.hasData()
Determine whether an element has any jQuery data associated with it.
-
jQuery.parseXML()
Parses a string into an XML document.
-
jQuery.post()
Load data from the server using a HTTP POST request.
-
jQuery.sub()
Creates a new copy of jQuery whose properties and methods can be modified without affecting the original jQuery object.
-
jQuery.when()
Provides a way to execute callback functions based on one or more objects, usually Deferred objects that represent asynchronous events.
