XMLHttpRequest.responseURL
The read-only XMLHttpRequest.responseURL
property returns the serialized URL of the response or the empty string if the URL is null
. If the URL is returned, any URL fragment present in the URL will be stripped away. The value of responseURL
will be the final URL obtained after any redirects.
Example
var xhr = new XMLHttpRequest();
xhr.open('GET', 'http://example.com/test', true);
xhr.onload = function () {
console.log(xhr.responseURL); // http://example.com/test
};
xhr.send(null);
Specifications
Specification | Status | Comment |
XMLHttpRequest | Living Standard | WHATWG living standard |
|
Desktop |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
Basic support |
37 |
14 |
32 |
No |
24 |
8 |
|
Mobile |
|
Android webview |
Chrome for Android |
Edge Mobile |
Firefox for Android |
Opera for Android |
iOS Safari |
Samsung Internet |
Basic support |
37 |
37 |
? |
32 |
24 |
? |
Yes |