Easy Tutorial
❮ Dom Processinginstruction Met Element Lookupnamespaceuri ❯

XML DOM nodeName Property



Definition and Usage

The nodeName property returns the name of the node, depending on its type.

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:


Try It Demos

Display the nodeName, nodeValue, and nodeType of attributes


❮ Dom Processinginstruction Met Element Lookupnamespaceuri ❯