Definition and Usage..
The baseURI property returns the base URI of the HTML document.
Note: This property is read-only
Syntax: node.baseURI
CODING:The baseURI property returns the base URI of the HTML document.
Note: This property is read-only
Syntax: node.baseURI
<!DOCTYPE html>
<html>
<body>
<p>Click the button to display the base URI of the document.</p>
<button onclick="myFunction()">Try it</button>
<p><strong>Note:</strong> The baseURI property is not supported in Internet Explorer.</p>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.baseURI;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
<html>
<body>
<p>Click the button to display the base URI of the document.</p>
<button onclick="myFunction()">Try it</button>
<p><strong>Note:</strong> The baseURI property is not supported in Internet Explorer.</p>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.baseURI;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
Comments
Post a Comment