class js.html.TreeWalker

Available on js

The TreeWalker object represents the nodes of a document subtree and a position within them.

A TreeWalker can be created using the createTreeWalker() method of the document object.



Documentation for this class was provided by MDN.

Instance Fields

var currentNode:Node

Setter throws DOMException.

function firstChild():Node

function lastChild():Node

function nextNode():Node

function nextSibling():Node

function parentNode():Node

function previousNode():Node