Does anyone know a way to suppress/remove specific nodes from an XML/XMLList or XMLCollection?
I have say this XML:
<root>
<level>
<detail>
</detail>
</level>
<level>
<detail>
</detail>
</level>
</root>
I want to make a copy of this XML (could be either of the three types of
XML objects) and remove the <detail> nodes from every node no matter
what hiarchy they are in.
Thanks in advance,
Dustyn Eskelson

