vot.js - v2.4.12
Preparing search index...
@vot.js/ext
<internal>
TreeWalker
Interface TreeWalker
The nodes of a document subtree and a position within them.
MDN Reference
interface
TreeWalker
{
currentNode
:
Node
;
filter
:
null
|
NodeFilter
;
root
:
Node
;
whatToShow
:
number
;
firstChild
()
:
null
|
Node
;
lastChild
()
:
null
|
Node
;
nextNode
()
:
null
|
Node
;
nextSibling
()
:
null
|
Node
;
parentNode
()
:
null
|
Node
;
previousNode
()
:
null
|
Node
;
previousSibling
()
:
null
|
Node
;
}
Index
Properties
current
Node
filter
root
what
To
Show
Methods
first
Child
last
Child
next
Node
next
Sibling
parent
Node
previous
Node
previous
Sibling
Properties
current
Node
currentNode
:
Node
MDN Reference
Readonly
filter
filter
:
null
|
NodeFilter
MDN Reference
Readonly
root
root
:
Node
MDN Reference
Readonly
what
To
Show
whatToShow
:
number
MDN Reference
Methods
first
Child
firstChild
()
:
null
|
Node
MDN Reference
Returns
null
|
Node
last
Child
lastChild
()
:
null
|
Node
MDN Reference
Returns
null
|
Node
next
Node
nextNode
()
:
null
|
Node
MDN Reference
Returns
null
|
Node
next
Sibling
nextSibling
()
:
null
|
Node
MDN Reference
Returns
null
|
Node
parent
Node
parentNode
()
:
null
|
Node
MDN Reference
Returns
null
|
Node
previous
Node
previousNode
()
:
null
|
Node
MDN Reference
Returns
null
|
Node
previous
Sibling
previousSibling
()
:
null
|
Node
MDN Reference
Returns
null
|
Node
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
current
Node
filter
root
what
To
Show
Methods
first
Child
last
Child
next
Node
next
Sibling
parent
Node
previous
Node
previous
Sibling
vot.js - v2.4.12
Loading...
The nodes of a document subtree and a position within them.
MDN Reference