[Solved] How do I move a div in the html? [closed]

[ad_1]

This must work :

$("#two").appendTo(".wrapper");

This must also work :

$(".wrapper").append($("#two"));

append and appendTo are considered moving functions in jQuery. You must look at the docs more.

Demo : http://jsfiddle.net/hungerpain/gjJJe/

1

[ad_2]

solved How do I move a div in the html? [closed]