how to move an document element to the same location as another jquery code example
Example 1: how to move div using jquery
$('#destination').append( $('#source') );
Example 2: move an element into another jquery
$('#source').appendTo('#destination');