How to move an element into another element? How to move an element into another element? javascript javascript

How to move an element into another element?


You may want to use the appendTo function (which adds to the end of the element):

$("#source").appendTo("#destination");

Alternatively you could use the prependTo function (which adds to the beginning of the element):

$("#source").prependTo("#destination");

Example: