jquery move element position code example
Example 1: jquery move element
$("#source").appendTo("#destination");
Example 2: jquery move li to first position
$("#topNumber").prependTo("#ImportantNumbers");
$("#source").appendTo("#destination");
$("#topNumber").prependTo("#ImportantNumbers");