Wednesday, September 25, 2024
Google search engine
HomeLanguagesJavascriptHTML DOM TreeWalker nextSibling() method

HTML DOM TreeWalker nextSibling() method

The TreeWalker nextSibling() method moves the current Node to its next sibling, if any, and returns the found sibling. If no such child exists in the document, this method returns null.

Syntax:

node = treeWalker.nextSibling();

Parameters: This method takes no parameters.

Return Value:

  • Returns next visible sibling of current 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 sibling of that TreeWalker’s first node.

html




<!doctype html>
<html>
<head>
    <meta charset="utf-8">
<title>HTML DOM TreeWalker nextSibling() 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(){
            treeWalker.firstChild();
            var node = treeWalker.nextSibling();
            console.log(node)
        }
</script>
</html>


Output:

Before Button Click:

After Button Click: In console, the next visible sibling of  body’s first element of the TreeWalker node that is <p> 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
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments