HTML DOM baseURI Property
Example
Get the baseURI of the document:
var x =
document.baseURI;
The result of x will be:
http://www.w3schools.com/jsref/prop_doc_baseuri.asp
Try it Yourself »
Definition and Usage
The baseURI property returns the base URI of the HTML document.
Note: This property is read-only.
Browser Support
| Property | |||||
|---|---|---|---|---|---|
| baseURI | Yes | Not supported | Yes | Yes | Yes |
Syntax
node.baseURI
Technical Details
| Return Value: | A String, representing the URI of the node's page |
|---|---|
| DOM Version | Core Level 3 Node Object |
Document Object
