XMLHttpRequest
XMLHttpRequest
(XHR) objects are used 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.
Despite its name, XMLHttpRequest
can be used to retrieve any type of data, not just XML.
If your communication needs to involve receiving event data or message data from a server, consider using server-sent events through the EventSource
interface. For full-duplex communication, WebSockets may be a better choice.
Note: This feature is available in Web Workers, except for Service Workers
Constructor
XMLHttpRequest()
-
The constructor initializes an
XMLHttpRequest
. It must be called before any other method calls.
Properties
This interface also inherits properties of XMLHttpRequestEventTarget
and of EventTarget
.
XMLHttpRequest.onreadystatechange
-
An Event handler that is called whenever the
readyState
attribute changes. -
XMLHttpRequest.readyState
Read only -
Returns an
unsigned short
, the state of the request. -
XMLHttpRequest.response
Read only -
Returns an
ArrayBuffer
,Blob
,Document
, JavaScript object, or aDOMString
, depending on the value ofXMLHttpRequest.responseType
, that contains the response entity body. -
XMLHttpRequest.responseText
Read only -
Returns a
DOMString
that contains the response to the request as text, ornull
if the request was unsuccessful or has not yet been sent. XMLHttpRequest.responseType
-
Is an enumerated value that defines the response type.
-
XMLHttpRequest.responseURL
Read only -
Returns the serialized URL of the response or the empty string if the URL is null.
-
XMLHttpRequest.responseXML
Read only -
Returns a
Document
containing the response to the request, ornull
if the request was unsuccessful, has not yet been sent, or cannot be parsed as XML or HTML. Not available in workers. -
XMLHttpRequest.status
Read only -
Returns an
unsigned short
with the status of the response of the request. -
XMLHttpRequest.statusText
Read only -
Returns a
DOMString
containing the response string returned by the HTTP server. UnlikeXMLHttpRequest.status
, this includes the entire text of the response message ("200 OK
", for example).Note: According to the 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.timeout
-
Is an
unsigned long
representing the number of milliseconds a request can take before automatically being terminated. XMLHttpRequestEventTarget.ontimeout
-
Is an Event handler that is called whenever the request times out.
-
XMLHttpRequest.upload
Read only -
Is an
XMLHttpRequestUpload
, representing the upload process. XMLHttpRequest.withCredentials
-
Is a boolean value that indicates whether or not cross-site
Access-Control
requests should be made using credentials such as cookies or authorization headers.
Non-standard properties
-
XMLHttpRequest.channel
Read only -
The channel used by the object when performing the request.
-
XMLHttpRequest.mozAnon
Read only -
Is a boolean. If true, the request will be sent without cookie and authentication headers.
-
XMLHttpRequest.mozSystem
Read only -
Is a boolean. If true, the same origin policy will not be enforced on the request.
XMLHttpRequest.mozBackgroundRequest
-
Is a boolean. It indicates whether or not the object represents a background service request.
Event handlers
onreadystatechange
as a property of the XMLHttpRequest
instance is supported in all browsers.
Since then, a number of additional on*
event handler properties have been implemented in various browsers (onload
, onerror
, onprogress
, etc.). See 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.
Methods
XMLHttpRequest.abort()
-
Aborts the request if it has already been sent.
XMLHttpRequest.getAllResponseHeaders()
-
Returns all the response headers, separated by CRLF, as a string, or
null
if no response has been received. XMLHttpRequest.getResponseHeader()
-
Returns the string containing the text of the specified header, or
null
if either the response has not yet been received or the header doesn't exist in the response. XMLHttpRequest.open()
-
Initializes a request.
XMLHttpRequest.overrideMimeType()
-
Overrides the MIME type returned by the server.
XMLHttpRequest.send()
-
Sends the request. If the request is asynchronous (which is the default), this method returns as soon as the request is sent.
XMLHttpRequest.setRequestHeader()
-
Sets the value of an HTTP request header. You must call
setRequestHeader()
afteropen()
, but beforesend()
.
Events
abort
-
Fired when a request has been aborted, for example because the program called
XMLHttpRequest.abort()
. Also available via theonabort
property. error
-
Fired when the request encountered an error. Also available via the
onerror
property. load
-
Fired when an
XMLHttpRequest
transaction completes successfully. Also available via theonload
property. loadend
-
Fired when a request has completed, whether successfully (after
load
) or unsuccessfully (afterabort
orerror
). Also available via theonloadend
property. loadstart
-
Fired when a request has started to load data. Also available via the
onloadstart
property. progress
-
Fired periodically when a request receives more data. Also available via the
onprogress
property. timeout
-
Fired when progress is terminated due to preset time expiring. Also available via the
ontimeout
property.
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
XMLHttpRequest |
1 |
12 |
1 |
7
5
Implemented via
ActiveXObject('Microsoft.XMLHTTP')
|
8 |
1.2 |
1 |
18 |
4 |
10.1 |
1 |
1.0 |
XMLHttpRequest |
1 |
12 |
1 |
7 |
≤12.1 |
3 |
1 |
18 |
4 |
≤12.1 |
1 |
1.0 |
abort |
1 |
12 |
1 |
5 |
≤12.1 |
1.2 |
1 |
18 |
4 |
≤12.1 |
1 |
1.0 |
abort_event |
1 |
12 |
3.5 |
10 |
≤12.1 |
≤4 |
≤37 |
18 |
4 |
≤12.1 |
≤3 |
1.0 |
error_event |
1 |
12 |
1 |
10 |
≤12.1 |
≤4 |
≤37 |
18 |
4 |
≤12.1 |
≤3 |
1.0 |
getAllResponseHeaders |
1 |
12 |
4
Starting from Firefox 49, empty headers are returned as empty strings in case the preference
network.http.keep_empty_response_headers_as_empty_string is set to true , defaulting to false . Before Firefox 49 empty headers had been ignored. Since Firefox 50 the preference defaults to true . |
5 |
≤12.1 |
1.2 |
1 |
18 |
4
Starting from Firefox 49, empty headers are returned as empty strings in case the preference
network.http.keep_empty_response_headers_as_empty_string is set to true , defaulting to false . Before Firefox 49 empty headers had been ignored. Since Firefox 50 the preference defaults to true . |
≤12.1 |
1 |
1.0 |
getResponseHeader |
1 |
12 |
1
Starting from Firefox 49, empty headers are returned as empty strings in case the preference
network.http.keep_empty_response_headers_as_empty_string is set to true , defaulting to false . Before Firefox 49 empty headers had been ignored. Since Firefox 50 the preference defaults to true . |
5 |
8 |
1.2 |
1 |
18 |
4
Starting from Firefox 49, empty headers are returned as empty strings in case the preference
network.http.keep_empty_response_headers_as_empty_string is set to true , defaulting to false . Before Firefox 49 empty headers had been ignored. Since Firefox 50 the preference defaults to true . |
10.1 |
1 |
1.0 |
load_event |
1 |
12 |
1 |
10 |
≤12.1 |
≤4 |
≤37 |
18 |
4 |
≤12.1 |
≤3 |
1.0 |
loadend_event |
18 |
12 |
5 |
10 |
≤12.1 |
Yes |
≤37 |
18 |
5 |
≤12.1 |
Yes |
1.0 |
loadstart_event |
1 |
12 |
3.5 |
10 |
≤12.1 |
≤4 |
1 |
18 |
4 |
≤12.1 |
≤3 |
1.0 |
onreadystatechange |
1 |
12 |
1 |
5 |
9 |
1.2 |
1 |
18 |
4 |
10.1 |
1 |
1.0 |
open |
1 |
12 |
1
Starting in Firefox 30, synchronous requests on the main thread have been deprecated due to their negative impact on performance and the user experience. Therefore, the
async parameter may not be false except in a Worker . |
5 |
8 |
1.2 |
1 |
18 |
4
Starting in Firefox 30, synchronous requests on the main thread have been deprecated due to their negative impact on performance and the user experience. Therefore, the
async parameter may not be false except in a Worker . |
10.1 |
1 |
1.0 |
overrideMimeType |
1 |
12 |
1 |
11
5
Implemented via
ActiveXObject
|
≤12.1 |
1.2 |
1 |
18 |
4 |
≤12.1 |
1 |
1.0 |
progress_event |
1 |
12 |
1 |
10 |
≤12.1 |
≤4 |
≤37 |
18 |
4 |
≤12.1 |
≤3 |
1.0 |
readyState |
1 |
12 |
1 |
7 |
8 |
1.2 |
1 |
18 |
4 |
10.1 |
1 |
1.0 |
response |
9 |
12 |
6 |
10 |
11.6 |
5.1 |
≤37 |
18 |
6 |
12 |
6 |
1.0 |
responseText |
1 |
12 |
1 |
5
Before Internet Explorer 10, the value of
XMLHttpRequest.responseText could be read only once the request was complete. |
8 |
1.2 |
1 |
18 |
4 |
10.1 |
1 |
1.0 |
responseType |
31 |
12 |
6 |
10 |
12-15
18
|
7 |
55 |
55 |
50 |
42 |
7 |
6.0 |
responseURL |
37 |
14 |
32 |
No |
24 |
8 |
37 |
37 |
32 |
24 |
Yes |
3.0 |
responseXML |
1 |
12 |
1
Before Firefox 51, an error parsing the received data added a
<parsererror> node to the top of the Document and then returned the Document in whatever state it happens to be in. This was inconsistent with the specification. Starting with Firefox 51, this scenario now correctly returns null as per the spec. |
7 |
≤12.1 |
≤4 |
≤37 |
18 |
4
Before Firefox 51, an error parsing the received data added a
<parsererror> node to the top of the Document and then returned the Document in whatever state it happens to be in. This was inconsistent with the specification. Starting with Firefox 51, this scenario now correctly returns null as per the spec. |
≤12.1 |
≤3 |
1.0 |
send |
1 |
12 |
1 |
5 |
8 |
1.2 |
1 |
18 |
4 |
10.1 |
1 |
1.0 |
setRequestHeader |
1 |
12 |
1 |
5 |
8 |
1.2 |
1 |
18 |
4 |
10.1 |
1 |
1.0 |
status |
1 |
12 |
1 |
7
Internet Explorer version 5 and 6 supported ajax calls using
ActiveXObject()
|
8 |
1.2 |
1 |
18 |
4 |
10.1 |
1 |
1.0 |
statusText |
1 |
12 |
1 |
7
Internet Explorer version 5 and 6 supported ajax calls using
ActiveXObject()
|
≤12.1 |
1.2 |
1 |
18 |
4 |
≤12.1 |
1 |
1.0 |
timeout |
29 |
12 |
12 |
8 |
17
12-16
|
7 |
≤37 |
29 |
14 |
18
12-16
|
7 |
2.0 |
timeout_event |
29 |
12 |
12 |
8 |
16 |
7 |
≤37 |
29 |
14 |
16 |
7 |
1.0 |
upload |
1 |
12 |
3.5 |
10 |
≤12.1 |
10 |
1 |
18 |
4 |
≤12.1 |
Yes |
1.0 |
withCredentials |
3 |
12 |
3.5
Starting with Firefox 11, it's no longer supported to use the
withCredentials attribute when performing synchronous requests. Attempting to do so throws an NS_ERROR_DOM_INVALID_ACCESS_ERR exception. |
10
Internet Explorer versions 8 and 9 supported cross-domain requests (CORS) using
XDomainRequest . |
12 |
4 |
≤37 |
18 |
4
Starting with Firefox 11, it's no longer supported to use the
withCredentials attribute when performing synchronous requests. Attempting to do so throws an NS_ERROR_DOM_INVALID_ACCESS_ERR exception. |
12 |
3.2 |
1.0 |
worker_support |
4 |
12 |
3.5 |
10 |
10.6 |
4 |
4 |
18 |
4 |
11 |
5 |
1.0 |
See also
-
XMLSerializer
: Serializing a DOM tree into XML - MDN tutorials covering
XMLHttpRequest
: - HTML5 Rocks — New Tricks in XMLHttpRequest2
- Feature-Policy directive
sync-xhr
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest