The documentURI
read-only property of the
Document
interface returns the document location as a string.
Syntax
const uri = document.documentURI
Example
JavaScript
document.getElementById("url").textContent = document.documentURI;
HTML
<p id="urlText">
URL:<br/>
<span id="url">URL goes here</span>
</p>
Result
Specifications
Specification | Status | Comment |
---|---|---|
DOM The definition of 'documentURI' in that specification. |
Living Standard |
Browser compatibility
BCD tables only load in the browser
See also
- The
document.URL
property which returns the same value.