The URL read-only property of the Document interface returns the document location as a string.
Syntax
const url = document.URL
Example
JavaScript
document.getElementById("url").textContent = document.URL;
HTML
<p id="urlText"> URL:<br/> <span id="url">URL goes here</span> </p>
Result
Specifications
| Specification | Status | Comment |
|---|---|---|
| DOM The definition of 'Document.URL' in that specification. |
Living Standard | Defines that the property is a USVString instead of a DOMString. |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
URL | Chrome Full support 1 | Edge Full support 12 | Firefox Full support Yes | IE Full support Yes | Opera Full support Yes | Safari Full support Yes | WebView Android Full support Yes | Chrome Android Full support Yes | Firefox Android Full support Yes | Opera Android Full support Yes | Safari iOS Full support Yes | Samsung Internet Android Full support Yes |
Legend
- Full support
- Full support
See also
- The
document.documentURIproperty which returns the same value.
