Easy Tutorial
❮ Prop Element Nextsibling Dom Prop Node Firstchild ❯

XML DOM nodeType Property



Definition and Usage

The nodeType property returns the type of the node.

Syntax


Example

The following code snippet uses loadXMLDoc() to load "books.xml" into xmlDoc and displays the node name, node value, and node type of the category attribute:

Example

xmlDoc=loadXMLDoc("books.xml");
x=xmlDoc.getElementsByTagName('book');

for(i=0;i<x.length;i++)
{
  document.write(x.item(i).attributes[0].nodeName);
  document.write(" = ");
  document.write(x.item(i).attributes[0].nodeValue);
  document.write(" (nodetype: " + x.item(i).attributes[0].nodeType + ")");
  document.write("<br>");
}

Output:


❮ Prop Element Nextsibling Dom Prop Node Firstchild ❯