I would like to move one DIV element inside another. For example, I want to move this (including all children):

<div id="source">
...
</div>

into this:

<div id="destination">
...
</div>

so that I have this:

<div id="destination">
  <div id="source">
    ...
  </div>
</div>
link|improve this question

59% accept rate
feedback

1 Answer

up vote 199 down vote accepted

You want to use the appendTo function:

$("#source")
    .appendTo("#destination");
link|improve this answer
29  
Note that there's also a prependTo that does exactly what you think it does. – Husky Jul 25 '11 at 11:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.