move and delete old element in jquery code example
Example 1: how to move div using jquery
$('#destination').append( $('#source') );
Example 2: jquery move element to another without losing events
$('#element_to_move').appendTo('#PARENT_at_destination');