Search w3schools.com:

SHARE THIS PAGE

XML DOM baseURI Property


Element Object Reference Element Object

Definition and Usage

The baseURI property returns the location (URI) of the xml document.

Syntax

elementNode.baseURI


Example

The following code fragment loads "books.xml" into xmlDoc using loadXMLDoc() and displays the location of the XML document:

Example

xmlDoc=loadXMLDoc("books.xml");
x=xmlDoc.getElementsByTagName("book")[0];

document.write("Document location: " + x.baseURI);

Output:

Document location: http://www.w3schools.com/dom/books.xml

Try it yourself »

Element Object Reference Element Object

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]