Tagged Questions

1
vote
3answers
772 views

Remove dom element without knowing its parent?

Is it possible to remove a dom element that has no parent other than the body tag? I know this would be easy with a framework like jquery, but I'm trying to stick to straight javascript. Here's the ...
0
votes
1answer
2k views

remove element in dom4j

<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: ...