I would like to move one DIV element inside another. For example, I want to move this (including all children):
... >
Ever tried plain JavaScript... destination.appendChild(source); ?
destination.appendChild(source);
onclick = function(){ destination.appendChild(source); }
div{ margin: .1em; } #destination{ border: solid 1px red; } #source {border: solid 1px gray; }
### ***