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 represent the base URI of the page.
Syntax:
node.baseURI
Example:
<!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:
Supported Browsers: The browser supported by DOM baseURI are listed below:
- Apple Safari
- Google Chrome
- Firefox
- Opera
leave a comment
0 Comments