scotteh/php-dom-wrapper

Elements get duplicated

Opened this issue · 1 comments

Elements get duplicated when using append(), prepend(), before(), after()

$node = $node->cloneNode(true);

If there are multiple append targets, all of the appended elements but the last one should be clones, and the last one should be moved. This is what jQuery does.