I would like to move one DIV element inside another. For example, I want to move this (including all children):
...
>
I noticed huge memory leak & performance difference between insertAfter
& after
or insertBefore
& before
.. If you have tons of DOM elements, or you need to use after()
or before()
inside a MouseMove event, the browser memory will probably increase and next operations will run really slow.
The solution I've just experienced is to use inserBefore instead before()
and insertAfter instead after()
.