From http://www.w3schools.com (Copyright Refsnes Data)

XML DOM baseURI Property


Element Object Reference Complete Element Object Reference

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 Complete Element Object Reference

From http://www.w3schools.com (Copyright Refsnes Data)