org.w3c.dom.Node.removeChild
method
public removeChild(oldChild as Node) as Node throws DOMException
Description

Removes a child node.

Parameters
  • oldChild Existing child.
Returns

Removed child.

Throws
  • DOMException if the node is not a child.
Example
parent.removeChild(child)