AvailabilityDOM Level 2 Traversal SynopsisNodeIterator createNodeIterator(Node root, unsigned long whatToShow, NodeFilter filter, boolean entityReferenceExpansion) throws DOMException; Arguments
ReturnsA newly created NodeIterator object. ThrowsThis method throws a DOMException with a code of NOT_SUPPORTED_ERR if the root argument is null. DescriptionThis method creates and returns a new NodeIterator object to iterate over the subtree rooted at the root node, using the specified filters. This method is not actually part of the Document interface but is instead defined by the DocumentTraversal interface. If an implementation supports the Traversal module, the Document object always implements DocumentTraversal and defines this method. See AlsoDocument.createTreeWalker( ), NodeFilter, NodeIterator |