The documentURI property in HTML DOM used to set or return the location of a document. The return value is null If the document was created by the DocumentImplementation object or undefined.
The documentURI property can be used on any document types.
Syntax:
- Return the documentURI property:
document.documentURI
- Set the documentURI property:
document.documentURI = locationURI
Return Values: It returns a string value which represents the URL of the Document.
Example: Return the documentURI property:
html
<!DOCTYPE html>
< html >
< body >
< center >
< h1 style = "color:green" >GeeksforGeeks</ h1 >
< h2 >HTML DOM documentURI Property</ h2 >
< button onclick = "GFGfun()" >Click Me!</ button >
< p id = "demo" ></ p >
</ center >
< script >
function GFGfun() {
var v = document.documentURI;
document.getElementById("demo").innerHTML = v;
}
</ script >
</ body >
</ html >
|
Output:
Before:

After:

Supported Browsers: The browsers supported by HTML DOM documentURI Property are listed below:
- Google Chrome
- Firefox
- Apple Safari
- Opera
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
20 Jul, 2021
Like Article
Save Article