XML DOM namespaceURI Property
Node Object
Definition and Usage
The namespaceURI property sets or returns the namespace URI of a node.
Syntax
Example
The following code fragment loads "books_ns.xml"
into xmlDoc using
loadXMLDoc() and returns the namespace 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).namespaceURI);
document.write("
");
}
The output of the code above will be:
http://www.w3schools.com/children/
http://www.w3schools.com/xml/
Try it yourself »
Node Object
Thank You For Helping Us!
Your message has been sent to W3Schools.
Close [X]