dom-move
Moves child elements from a DOM node to another dom node.
usage
;
All the child nodes of source
will be removed, and appended in destination
. The destination
node is returned so you can do:
var content = ;
If the second parameter is ommited, a document fragment is created:
var fragment = ;