NodeIterator.nextNode()

The NodeIterator.nextNode() method returns the next node in the set represented by the NodeIterator and advances the position of the iterator within the set.  The first call to nextNode() returns the first node in the set.

This method returns null when there are no nodes left in the set.

In old browsers, as specified in old versions of the specifications, the method may throws the INVALID_STATE_ERR DOMException if this method is called after the NodeIterator.detach()method. Recent browsers never throw.

Syntax

JavaScript
node = nodeIterator.nextNode();

Example

JavaScript
var nodeIterator = document.createNodeIterator(
    document.body,
    NodeFilter.SHOW_ELEMENT,
    { acceptNode: function(node) { return NodeFilter.FILTER_ACCEPT; } },
    false // this optional argument is not used any more
);
currentNode = nodeIterator.nextNode(); // returns the next node

Specifications

Specification Status Comment
DOM
The definition of 'NodeIterator.nextNode' in that specification.
Living Standard As detach() is now a no-op method, this method cannot throw anymore.
Document Object Model (DOM) Level 2 Traversal and Range Specification
The definition of 'NodeIterator.nextNode' in that specification.
Recommendation Initial definition.

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support 1.0 3.5 (1.9.1) 9.0 9.0 3.0
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (Yes) 1.0 (1.9.1) (Yes) 9.0 3.0

See also

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/nodeiterator/nextnode

API DOM Method NodeIterator