The DOM baseURI property is used to return the base Uniform Resource Identifier (URI) of the document. This property is used for read-only. This property returns a string value that represents the base URI of the page.
Syntax:
node.baseURI
Return Value: It returns a string value that represents the URL of the node’s page.
Example: In this example, we will use the DOM baseURI property.
HTML
<!DOCTYPE html>
< html >
< head >
< title >baseURI property</ title >
< style >
h1 {
color: green;
}
</ style >
</ head >
< body >
< h1 >GeeksforGeeks</ h1 >
< h2 >DOM baseURI Property</ h2 >
< button onclick = "geeks()" >Submit</ button >
< p id = "gfg" ></ p >
< script >
function geeks() {
let x = document.baseURI;
document.getElementById("gfg").innerHTML =
"The base URI of the page: " + x;
}
</ script >
</ body >
</ html >
|
Output:

HTML DOM baseURI Property
Supported Browsers: The browser supported by DOM baseURI Property are listed below:
- Google Chrome 1 and above
- Edge 12 and above
- Firefox 1 and above
- Opera12.1 and above
- Safari 4 and above
- Internet Explorer not supported
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 :
04 Aug, 2023
Like Article
Save Article