<root>
<elm id="1"/>
<elm id="2"/>
<elm id="3"/>
<elm id="4"/>
</root>
I want to leave id="2" in the dom,
how can domj4 to remove the other three ?
result:
<root>
<elm id="2"/>
</root>
I want to leave id="2" in the dom, result:
| ||||
|
feedback
|
|
What have you done so far? Well, I would go from the scratch.
Cheers. NOTE: Document.remove(Element elem) method will not work if the element is not the immediate child. For more see the docs. | |||
|
feedback
|