docs.rodeo

MDN Web Docs mirror

Document: URL property

{{APIRef("DOM")}} 

The URL read-only property of the {{domxref("Document")}}  interface returns the document location as a string.

Value

A string containing the URL of the document.

Examples

JavaScript

document.getElementById("url").textContent = document.URL;

HTML

<p id="urlText">
  URL:<br />
  <span id="url">URL goes here</span>
</p>

Result

{{EmbedLiveSample("Examples", "100%", 100)}} 

Specifications

{{Specifications}} 

Browser compatibility

{{Compat}} 

See also

In this article

View on MDN