Skip to main content

XML DOM: Node List

The NodeList object represents an ordered list of nodes.

The items in the NodeList are accessible via an index, starting from 0.

The node list keeps itself up-to-date. If an element is deleted or added, in the node list or the XML document, the list is automatically updated.

note

In a node list, the nodes are returned in the order in which they are specified in the XML document.

Properties

PropertyDescription
lengthReturns the number of nodes in a node list

Methods

MethodDescription
item()Returns the node at the specified index in a node list

Table of Contents