I have a node of dom document.How i remove al chil nodes of that element?
eg
<employee>
<one/>
<two/>
<three/>
</employee>
OP
<employee>
</employee>
I want to remove all child nodes of employee (one, two, etc.).
This will remove all the child elements of a Node by passing the employee node in. |
|||||||||||
|
|
||||
|
|
|
||||
|
|
oneandtwodon't have any child nodes. Have you tried reading in a DOM, changing it and writing out the result? – Peter Lawrey Jun 20 '11 at 13:15oneandtwobeing two instances. @akshay, please post the code that performs (or attempts to) this activity. I simply do not have the time to conjure a full blown example that performs what you need. – Vineet Reynolds Jun 20 '11 at 13:21