This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Note: This feature is available in Web Workers, except for Service Workers.
The XMLHttpRequest method open() initializes a newly-created request, or re-initializes an existing one.
Note: Calling this method for an already active request (one for which open() has already been called) is the equivalent of calling abort().
open(method, url) open(method, url, async) open(method, url, async, user) open(method, url, async, user, password)
methodThe HTTP request method to use, such as "GET", "POST", "PUT", "DELETE", etc. Ignored for non-HTTP(S) URLs.
urlA string or any other object with a stringifier — including a URL object — that provides the URL of the resource to send the request to.
async OptionalAn optional Boolean parameter, defaulting to true, indicating whether or not to perform the operation asynchronously. If this value is false, the send() method does not return until the response is received. If true, notification of a completed transaction is provided using event listeners. This must be true if the multipart attribute is true, or an exception will be thrown.
Note: Synchronous requests on the main thread can be easily disruptive to the user experience and should be avoided; in fact, many browsers have deprecated synchronous XHR support on the main thread entirely. Synchronous requests are permitted in Workers.
user OptionalThe optional user name to use for authentication purposes; by default, this is the null value.
password OptionalThe optional password to use for authentication purposes; by default, this is the null value.
None (undefined).
| Specification |
|---|
| XMLHttpRequest> # the-open()-method> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
open |
1 | 12 | 1Starting in Firefox 30, synchronous requests on the main thread have been deprecated due to their negative impact on performance and the user experience. Therefore, theasync parameter may not be false except in a Worker. |
8 | 1.2 | 18 | 4Starting in Firefox for Android 30, synchronous requests on the main thread have been deprecated due to their negative impact on performance and the user experience. Therefore, theasync parameter may not be false except in a Worker. |
10.1 | 1 | 1.0 | 4.4 | 1 |
XMLHttpRequest methods: setRequestHeader(), send(), and abort()
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/open