Search w3schools.com:

SHARE THIS PAGE

XML DOM baseURI Property


Attr Object Reference Attr Object

Definition and Usage

The baseURI property returns the absolute base URI of an attribute.

Syntax

attrObject.baseURI


Example

The following code fragment loads "books_ns.xml" into xmlDoc using loadXMLDoc() and returns the base URI of the "lang" attributes:

Example

xmlDoc=loadXMLDoc("books_ns.xml");

x=xmlDoc.getElementsByTagName('title');

for(i=0;i<x.length;i++)
{
document.write(x.item(i).attributes[0].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 »

Attr Object Reference Attr Object

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]