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: books.xml

Try it yourself »

Element Object Reference Element Object

Color Picker

colorpicker