Search w3schools.com:

SHARE THIS PAGE

XML DOM baseURI Property


Node Object Reference Node Object

Definition and Usage

The baseURI property returns the absolute base URI of a node.

Syntax

nodeObject.baseURI


Example

The following code fragment loads "books_ns.xml" into xmlDoc using loadXMLDoc() and returns the base URI of the <title> elements:

Example

xmlDoc=loadXMLDoc("books_ns.xml");

x=xmlDoc.getElementsByTagName('title');

for(i=0;i<x.length;i++)
{
document.write(x.item(i).baseURI);
document.write("
");
}

The output of the code above will be:

http://www.w3schools.com/dom/books_ns.xml
http://www.w3schools.com/dom/books_ns.xml

Try it yourself »

Node Object Reference Node Object

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]