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