jQuery.ajax()
Perform an asynchronous HTTP (Ajax) request.
Perform an asynchronous HTTP (Ajax) request.
Ajax requests produce a number of different events that you can subscribe to. Here's a full list of the events and in what order they are triggered. There are two types of events: Local Events These are callbacks that you can subscribe to within the Ajax request object, like so: 1 2 3 4 5 … Continue reading
Attach a function to be executed whenever an Ajax request completes successfully. This is an Ajax Event.
Attach a function to be executed before an Ajax request is sent. This is an Ajax Event.
Load data from the server using a HTTP GET request.
Provides a way to execute callback functions based on zero or more Thenable objects, usually Deferred objects that represent asynchronous events.
Set default values for future Ajax requests. Its use is not recommended.
Register a handler to be called when all Ajax requests have completed. This is an Ajax Event.
Register a handler to be called when Ajax requests complete. This is an AjaxEvent.
Register a handler to be called when Ajax requests complete with an error. This is an Ajax Event.
Send data to the server using a HTTP POST request.
Register a handler to be called when the first Ajax request begins. This is an Ajax Event.
Load JSON-encoded data from the server using a GET HTTP request.
Load a JavaScript file from the server using a GET HTTP request, then execute it.
Creates an object that handles the actual transmission of Ajax data.
Load data from the server and place the returned HTML into the matched elements.
This page documents data types appearing in jQuery function signatures, whether defined by JavaScript itself or further restricted by jQuery. Unless explicitly stated otherwise, jQuery functions require primitive values where applicable, and do not accept their Object-wrapped forms. If you want to study these concepts in depth, take a look at MDN. You should be … Continue reading
Handle custom Ajax options or modify existing options before each request is sent and before they are processed by $.ajax().
A factory function that returns a chainable utility object with methods to register multiple callbacks into callback queues, invoke callback queues, and relay the success or failure state of any synchronous or asynchronous function.
Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.