ExampleInsert content at the end of each p element:
Try it yourself » |
The appendTo() method inserts specified content at the end of (but still inside) the selected elements.
Tip: The append() and appendTo() methods does the same thing. The difference is in the syntax: the placement of the content and selector, and that append() can append content using a function.
$(content).appendTo(selector) |
Parameter | Description |
---|---|
content | Required. Specifies the content to insert (can contain HTML tags) |
selector | Required. Specifies on which elements to append the content |