org.w3c.dom.Node.appendChild
method
public appendChild(newChild as Node) as Node throws DOMException
Description

Appends a child node.

Parameters
  • newChild Node to append.
Returns

Appended node.

Throws
  • DOMException if insertion is invalid.
Example
parent.appendChild(child)