append abstract method

void append(
  1. dynamic content
)

Insert content to the end of each element in this collection.

  • If this collection contains multiple elements, the inserted content will
  • be cloned. In such cases, the fragment inserted to the last element in this
  • collection will be the original content.
    • content can be an html String, an Element, or an ElementQuery.

Implementation

void append(content);