Baseline Widely available
The NodeIterator.pointerBeforeReferenceNode
read-only property returns a boolean flag that indicates whether the NodeFilter
is anchored before (if this value is true
) or after (if this value is false
) the anchor node indicated by the NodeIterator.referenceNode
property.
A boolean.
Examplesconst nodeIterator = document.createNodeIterator(
document.body,
NodeFilter.SHOW_ELEMENT,
{
acceptNode(node) {
return NodeFilter.FILTER_ACCEPT;
},
},
);
flag = nodeIterator.pointerBeforeReferenceNode;
Specifications Browser compatibility See also
NodeIterator
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4