jquery move div to another div code example
Example 1: jquery move element
$("#source").appendTo("#destination");
Example 2: how to move div using jquery
$('#destination').append( $('#source') );
Example 3: move an element into another jquery
$('#source').appendTo('#destination');