om.DomNode.removeChild

Deletes the specified child node from the current node.

Syntax

removeChild(
   node om.DomNode )
  1. node is a reference to a node.

Usage

The removeChild() method deletes a om.DomNode element node from the current node.

DEFINE parent, child om.DomNode
...
CALL parent.removeChild(child)