From http://www.w3schools.com (Copyright Refsnes Data)
Complete Element Object Reference
The removeAttribute() method removes a specified attribute.
If a default value for the attribute is defined in a DTD, a new attribute immediately appears with the default value
| elementNode.removeAttribute(name) |
| Parameter | Description |
|---|---|
| name | Required. Specifies the attribute to remove |
The following code fragment loads "books.xml" into xmlDoc using loadXMLDoc() and removes the "category" attribute from all <book> elements:
Example
Try it yourself » |
Complete Element Object Reference
From http://www.w3schools.com (Copyright Refsnes Data)