Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | DOM baseURI Property

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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: 
 

html




<!DOCTYPE html>
<html>
    <body>
        <title>baseURI property</title>
        <style>
            h1 {
                color:green;
            }
            body {
                text-align:center;
            }
        </style>
    </head>
    <body>
        <h1>GeeksforGeeks</h1>
        <h2>DOM baseURI Property</h2>
        </h2>
        <button onclick = "geeks()">Submit</button>
        <p id="gfg"></p>
 
 
 
 
        <script>
            function geeks() {
                var x = document.baseURI;
                document.getElementById("gfg").innerHTML =
                    "The base URI of the page: " + x;
            }
        </script>
    </body>
</html>                   


Output:

Before Clicking On Button :

 

After Clicking On Button : 
 

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

 


My Personal Notes arrow_drop_up
Last Updated : 13 Jun, 2022
Like Article
Save Article
Similar Reads
Related Tutorials