XML DOM namespaceURI Property


Node Object Reference Node Object

Definition and Usage

The namespaceURI property returns the namespace URI of a node.


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The namespaceURI property is supported in all major browsers, except Internet Explorer.


Syntax

nodeObject.namespaceURI

Technical Details

Return Value: A String representing the namespace URI of a node
DOM Version Core Level 2 Node Object


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("<br>");
  }

The output of the code above will be:

http://www.w3schools.com/children/
http://www.w3schools.com/xml/

Try it yourself »

Node Object Reference Node Object

Color Picker

colorpicker