I would like to move one DIV element inside another. For example, I want to move this (including all children):
... >
You can use:
To Insert After,
jQuery("#source").insertAfter("#destination");
To Insert inside another element,
jQuery("#source").appendTo("#destination");