Removes the next node that would be returned by peekNode or nextNode.
Set objXMLDOMNode = objXMLDOMSelection.removeNext
The removeNext method is equivalent to the following (except that it also works for attributes):
var node = list.peeknode(); node.parentnode.removeChile(node);
The side effect is that the length of the collection is decremented and the nextNode and item methods will not return it because it has been removed.
Applies To: XMLDOMSelection Object