Element.insertAfter

Inserts the given element what as a sibling of the this element, after the element where in the parent node.

class Element
insertAfter
out (ret) { assert (where.parentNode is this); assert (what.parentNode is this); assert (what.parentDocument is this.parentDocument); assert (ret is what); }

Meta