web api instance property
NodeIterator: whatToShow property
The NodeIterator.whatToShow read-only property represents
an unsigned integer representing a bitmask signifying what types of nodes
should be returned by the NodeIterator.
Value
A non-negative integer. For the list of possible values, see document.createNodeIterator().
Examples
const nodeIterator = document.createNodeIterator(
document.body,
NodeFilter.SHOW_ELEMENT | NodeFilter.SHOW_COMMENT | NodeFilter.SHOW_TEXT,
{ acceptNode: (node) => NodeFilter.FILTER_ACCEPT },
);
if (
nodeIterator.whatToShow & NodeFilter.SHOW_ALL ||
nodeIterator.whatToShow & NodeFilter.SHOW_COMMENT
) {
// nodeIterator will show comments
}
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
- The interface this property belongs to:
NodeIterator.