Use XMLHttpRequest (XHR) objects to interact with servers. You can retrieve data from a URL without having to do a full page refresh. This enables a Web page to update just part of a page without disrupting what the user is doing. XMLHttpRequest is used heavily in Ajax programming.
XMLHttpRequest was originally designed by Microsoft around 1999 and later adopted by Mozilla, Apple, and Google. Since October 2014, it has been standardized at the WHATWG, together with the new promise-based fetch() method.
Despite its name, XMLHttpRequest can be used to retrieve any type of data, not just XML, and it supports protocols other than HTTP (including file and ftp).
XMLHttpRequest()This interface also inherits properties of XMLHttpRequestEventTarget and of EventTarget.
XMLHttpRequest.onreadystatechangeEventHandler that is called whenever the readyState attribute changes.XMLHttpRequest.readyState Read only
unsigned short, the state of the request.XMLHttpRequest.response Read only
ArrayBuffer, Blob, Document, JavaScript object, or a DOMString, depending on the value of XMLHttpRequest.responseType. that contains the response entity body.XMLHttpRequest.responseText Read only
DOMString that contains the response to the request as text, or null if the request was unsuccessful or has not yet been sent.XMLHttpRequest.responseTypeXMLHttpRequest.responseURL Read only
XMLHttpRequest.responseXML Read only Not available to workers
Document containing the response to the request, or null if the request was unsuccessful, has not yet been sent, or cannot be parsed as XML or HTML.XMLHttpRequest.status Read only
unsigned short with the status of the response of the request.XMLHttpRequest.statusText Read only
DOMString containing the response string returned by the HTTP server. Unlike XMLHTTPRequest.status, this includes the entire text of the response message ("200 OK", for example).Note: via HTTP/2 specification (8.1.2.4 Response Pseudo-Header Fields), HTTP/2 does not define a way to carry the version or reason phrase that is included in an HTTP/1.1 status line.
XMLHttpRequest.timeoutunsigned long representing the number of milliseconds a request can take before automatically being terminated.XMLHttpRequestEventTarget.ontimeoutEventHandler that is called whenever the request times out. XMLHttpRequest.upload Read only
XMLHttpRequestUpload, representing the upload process.XMLHttpRequest.withCredentialsBoolean that indicates whether or not cross-site Access-Control requests should be made using credentials such as cookies or authorization headers.XMLHttpRequest.channelRead only
nsIChannel. The channel used by the object when performing the request.XMLHttpRequest.mozAnonRead only
XMLHttpRequest.mozSystemRead only
XMLHttpRequest.mozBackgroundRequestXMLHttpRequest.mozResponseArrayBuffer Obsolete since Gecko 6 Read only
ArrayBuffer. The response to the request, as a JavaScript typed array.XMLHttpRequest.multipartObsolete since Gecko 22
responseText from progress events instead.onreadystatechange as a property of the XMLHttpRequest instance is supported in all browsers.
Since then, a number of additional event handlers were implemented in various browsers (onload, onerror, onprogress, etc.). These are supported in Firefox. In particular, see nsIXMLHttpRequestEventTarget and Using XMLHttpRequest.
More recent browsers, including Firefox, also support listening to the XMLHttpRequest events via standard addEventListener APIs in addition to setting on* properties to a handler function.
XMLHttpRequest.abort()XMLHttpRequest.getAllResponseHeaders()null if no response has been received.XMLHttpRequest.getResponseHeader()null if either the response has not yet been received or the header doesn't exist in the response.XMLHttpRequest.open()openRequest() instead.XMLHttpRequest.overrideMimeType()XMLHttpRequest.send()XMLHttpRequest.setRequestHeader()setRequestHeader()after open(), but before send().XMLHttpRequest.init()XMLHttpRequest.openRequest()open() instead. See the documentation for open().XMLHttpRequest.sendAsBinary()
send() method that sends binary data.| Specification | Status | Comment |
|---|---|---|
| XMLHttpRequest | Living Standard | Live standard, latest version |
| Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
|---|---|---|---|---|---|---|
| Basic support (XHR1) | 1 | (Yes) | 1.0 (1.7 or earlier) | 7 | (Yes) | 1.2 |
send(ArrayBuffer) | 9 | (Yes) | 9.0 (9.0) | 10 | 11.60 | ? |
send(ArrayBufferView) | 22 | (Yes) | 20.0 (20.0) | ? | ? | ? |
send(Blob) | 7 | (Yes) | 3.6 (1.9.2) | 10 | 12 | ? |
send(FormData) | 6 | (Yes) | 4.0 (2.0) | 10 | 12 | ? |
sendAsBinary(DOMString)
| No support[1] | No support | 2.0 (1.8.1) | No support | No support | No support |
response | 10 | (Yes) | 6.0 (6.0) | 10 | 11.60 | (Yes) |
responseType = 'arraybuffer' | 10 | (Yes) | 6.0 (6.0) | 10 | 11.60 | (Yes) |
responseType = 'blob' | 19 | (Yes) | 6.0 (6.0) | 10 | 12 | (Yes) |
responseType = 'document' | 18 | (Yes) | 11.0 (11.0) | 10 | No support | 6.1 |
responseType = 'json' | 31 | No support | 10.0 (10.0) | No support | 12[2] No support 16 17 | (Yes) |
| Progress Events | 7 | (Yes) | 3.5 (1.9.1) | 10 | 12 | (Yes) |
withCredentials | 3 | (Yes) | 3.5 (1.9.1) | 10 | 12 | 4 |
timeout | 29.0 | (Yes) | 12.0 (12.0) | 8 | 12 16 | (Yes) |
responseType = 'moz-blob' | No support | No support | 12.0 (12.0) | No support | No support | No support |
| Feature | Android | Chrome for Android | Edge | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|---|
| Basic support | ? | 1.0 | (Yes) | (Yes) | ? | ? | ? |
send(ArrayBuffer) | ? | ? | (Yes) | ? | ? | ? | ? |
send(ArrayBufferView) | ? | ? | (Yes) | ? | ? | ? | ? |
send(Blob) | ? | ? | (Yes) | ? | ? | ? | ? |
send(FormData) | ? | ? | (Yes) | ? | ? | ? | ? |
sendAsBinary(DOMString)
| ? | ? | No support | ? | ? | ? | ? |
response | ? | ? | (Yes) | ? | ? | ? | ? |
responseType = 'arraybuffer' | ? | ? | (Yes) | ? | ? | ? | ? |
responseType = 'blob' | ? | ? | (Yes) | ? | ? | ? | ? |
responseType = 'document' | ? | ? | (Yes) | ? | ? | ? | ? |
responseType = 'json' | ? | ? | No support | ? | ? | ? | ? |
| Progress Events | ? | ? | (Yes) | ? | ? | ? | ? |
withCredentials | ? | ? | (Yes) | ? | ? | ? | ? |
timeout | ? | ? | (Yes) | ? | ? | ? | ? |
responseType = 'moz-blob' | ? | ? | No support | ? | ? | ? | ? |
[1] There is a polyfill available to support sendAsBinary().
[2] Before switching to Blink/Chromium, Opera supported responseType=json between Opera 12 and Opera 15. Support was added again in Opera 17.
Chrome scope availability — how to access XMLHttpRequest from JSM modules etc., which do not have access to DOM
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest