If you want to use the appendTo function (which adds to the end of the element), try this:
$("#source").appendTo("#destination");
Otherwise, you can use the prependTo function (which adds to the beginning of the element) like this:
$("#source").prependTo("#destination");