DEV Community

Techsolutionstuff
Techsolutionstuff

Posted on • Originally published at techsolutionstuff.com

Jquery appendTo And prependTo Example

In this article, we will see jquery appendTo() and prependTo() examples. The prependTo() method inserts HTML elements at the beginning of the selected elements.

The appendTo() method inserts HTML elements at the end of the selected elements. The .append() and .appendTo() methods perform the same task. The major difference is in the syntax.

The .append() method selector expression preceding the method is the container into which the content is inserted. With .appendTo(), on the other hand, the content precedes the method, either as a selector expression or as markup and it is inserted into the target container.

The .prepend() method selector expression preceding the method is the container into which the content is inserted. With .prependTo(), on the other hand, the content precedes the method, either as a selector expression or as markup. and it is inserted into the target container.

Top comments (0)