after method

void after(
  1. JSAny nodes
)

The after() method of the CharacterData interface inserts a set of Node objects or strings in the children list of the object's parent, just after the object itself.

Strings are inserted as Text nodes; the string is being passed as argument to the Text/Text constructor.

Implementation

external void after(JSAny nodes);