I am building an html page and I need to add html code from one div to another dinamically.
This is my first div:
<div id="placeHolder" style="display:none">
<div id="1">....</div>
<div id="2">....</div>
<div id="3">....</div>
</div>
And I want to add the divs with the id 1, 2 and 3 to another div(#mainDiv) but not all at once.
Is there a way to add partial html code with jquery ? I know theres a function called append but what I dont know if it is suitable for this type of ocasion..
Thanks