Document.URL
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
BCD tables only load in the browser
See also
- The
document.documentURI
property which returns the same value.