[jQuery] Re: fastest way to move dom nodes?

2009-02-26 Thread ricardobeat
This should be a little bit faster: var $divB = ('.divB', '#wrapper'); $('#divA').children('.a-specific-class').appendTo($divB[0]); If it's possible, try moving a single wrapper element containing all the links, that will be certainly faster. - ricardo On Feb 26, 8:40 pm, Jack Killpatrick wro

[jQuery] Re: fastest way to move dom nodes?

2009-02-27 Thread Jack Killpatrick
Thanks. I ended up largely solving my problem via what turned out to be a related issue having to do with a selector I was using to get the node to append to (there were many new nodes created on the fly for appending into). I was using classes 3 deep for the selector and changed my code so tha