files/en-us/web/api/treewalker/index.md
{{ APIRef("DOM") }}
The TreeWalker object represents the nodes of a document subtree and a position within them.
A TreeWalker can be created using the {{domxref("Document.createTreeWalker()")}} method.
This interface doesn't inherit any property.
TreeWalker was created.unsigned long which is a bitmask made of constants describing the types of {{domxref("Node")}} that must be presented. Non-matching nodes are skipped, but their children may be included, if relevant.NodeFilter associated with this TreeWalker used to select the relevant nodes.TreeWalker is currently pointing at.This interface doesn't inherit any method.
[!NOTE] In the context of a
TreeWalker, a node is visible if it exists in the logical view determined by thewhatToShowandfilterparameter arguments. (Whether or not the node is visible on the screen is irrelevant.)
{{domxref("TreeWalker.parentNode()")}}
null and the current node is not changed.{{domxref("TreeWalker.firstChild()")}}
: Moves the current {{domxref("Node")}} to the first visible child of the current node, and returns the found child. It also moves the current node to this child. If no such child exists, returns null and the current node is not changed. Note that the node returned by firstChild() is dependent on the value of whatToShow set during instantiation of the TreeWalker object. Assuming the following HTML tree, and if you set the whatToShow to NodeFilter.SHOW_ALL a call to firstChild() will return a Text node and not an HTMLDivElement object.
<!doctype html>
<html lang="en">
<head>
<title>Demo</title>
</head>
<body>
<div id="container"></div>
</body>
</html>
let walker = document.createTreeWalker(document.body, NodeFilter.SHOW_ALL);
let node = walker.firstChild(); // nodeName: "#text"
But if we do:
let walker = document.createTreeWalker(
document.body,
NodeFilter.SHOW_ELEMENT,
);
let node = walker.firstChild(); // nodeName: "DIV"
The same applies to nextSibling(), previousSibling(), firstChild() and lastChild()
{{domxref("TreeWalker.lastChild()")}}
null is returned and the current node is not changed.{{domxref("TreeWalker.previousSibling()")}}
null and the current node is not changed.{{domxref("TreeWalker.nextSibling()")}}
null is returned and the current node is not changed.{{domxref("TreeWalker.previousNode()")}}
null and the current node is not changed.{{domxref("TreeWalker.nextNode()")}}
null and the current node is not changed.{{Specifications}}
{{Compat}}