The TreeWalker nextNode() method moves the current Node to the next visible node in the document order, and returns the found node. If no such child exists in the document, this method returns null.
Syntax:
node = treeWalker.nextNode();
Parameters: This method takes no parameters.
Return Value:
- Returns next visible node if exists.
- Returns null if no such child exists.
Example: In this example, I have created a TreeWalker with body node and hence showed the next visible node of that TreeWalker node.
html
<!doctype html><html><head>    <meta charset="utf-8"><title>HTML DOM TreeWalker nextNode() method</title>   </head><body>    <h1>neveropen</h1>    <p>Click Below</p>    <button onclick="get()">Click</button></body><script>        var treeWalker = document.createTreeWalker(        document.body,        NodeFilter.SHOW_ELEMENT,        { acceptNode: function(node) { return NodeFilter.FILTER_ACCEPT; } },        false);        function get(){            var node = treeWalker.nextNode();            console.log(node)         }</script></html> |
Output:
Before Button Click:
After Button Click: In console, the next visible child of the TreeWalker node that is <h1> tag can be seen.
Supported Browsers:
- Google Chrome 1 and above
- Edge 12 and above
- Firefox 4 and above
- Safari 3 and above
- Opera 9 and above
- Internet Explorer 9 and above


… [Trackback]
[…] Find More on that Topic: geeksforgeeks.org/html-dom-treewalker-nextnode-method/ […]
… [Trackback]
[…] Read More Info here to that Topic: geeksforgeeks.org/html-dom-treewalker-nextnode-method/ […]
… [Trackback]
[…] Find More here on that Topic: geeksforgeeks.org/html-dom-treewalker-nextnode-method/ […]
… [Trackback]
[…] There you will find 89243 more Information to that Topic: geeksforgeeks.org/html-dom-treewalker-nextnode-method/ […]
… [Trackback]
[…] Information on that Topic: geeksforgeeks.org/html-dom-treewalker-nextnode-method/ […]