From http://www.w3schools.com (Copyright Refsnes Data)
Complete Element Object Reference
The removeChild() method removes a child node.
This function returns the removed node on success, or NULL on failure.
| elementNode.removeChild(node) |
| Parameter | Description |
|---|---|
| node | Required. Specifies the child node to remove |
The following code fragment loads "books.xml" into xmlDoc using loadXMLDoc() and removes a child node in the first <book> element:
Example
Output:
Try it yourself » |
removeChild() - Remove the last child node from a nodelist
Complete Element Object Reference
From http://www.w3schools.com (Copyright Refsnes Data)