- mapaccepts
The content type sent in the request header that tells the server what kind of response it will accept in return.
- boolasync = true
By default, all requests are sent asynchronous.
- fnbeforeSend( jqXHR, config)
A pre-request callback function that can be used to modify the jqXHR object before it is sent.
- boolcache = true
If set to false it will force the pages that you request to not be cached by the browser.
- fncomplete( jqXHR, status)
A function to be called when the request finishes (after success and error callbacks are executed).
- mapcontents
A map of string/regular-expression pairs that determine how jQuery will parse the response, given its content type.
- strcontentType
When sending data to the server, use this content-type. Default is "application/x-www-form-urlencoded", which is fine for most cases.
- objcontext
This object will be made the context of all Ajax-related callbacks.
- mapconverters
A map of dataType-to-dataType converters. Each converter's value is a function that returns the transformed value of the response.
- boolcrossDomain
If you wish to force a crossDomain request (such as JSONP) on the same domain, set the value of crossDomain to true.
- obj, strdata
Data to be sent to the server. It is converted to a query string, if not already a string.
- fndataFilter( data, type )
A function to be used to handle the raw responsed data of XMLHttpRequest.This is a pre-filtering function to sanitize the response.
- boolglobal = true
Whether to trigger global Ajax event handlers for this request.
- mapheaders
A map of additional header key/value pairs to send along with the request.
- boolifModified = false
Allow the request to be successful only if the response has changed since the last request.
- strjsonp
Override the callback function name in a jsonp request.
- fnjsonpCallback
Specify the callback function name for a jsonp request.
- strpassword
A password to be used in response to an HTTP access authentication request.
- boolprocessData = true
By default, data passed in to the data option as an object will be processed and transformed into a query string, fitting to the default content-type "application/x-www-form-urlencoded".
- strscriptCharset
Forces the request to be interpreted as a certain charset.
- mapstatusCode
A map of numeric HTTP codes and functions to be called when the response has the corresponding code.
- numtimeout
Set a local timeout (in milliseconds) for the request.
- booltraditional
Set this to true if you wish to use the traditional style of param serialization.
- strtype = 'GET'
The type of request to make ("POST" or "GET"), default is "GET".
- strurl = curr. page
A string containing the URL to which the request is sent.
- strusername
A username to be used in response to an HTTP access authentication request.
- fnxhr
Callback for creating the XMLHttpRequest object.
- strdataType ∈ {xml, json, script, html}
The type of data that you're expecting back from the server.
- fnerror( jqXHR, status, errorThrown )
A function to be called if the request fails.
- fnsuccess( data, status, jqXHR )
A function to be called if the request succeeds.