[jQuery] Re: IE6 - what's the absolute fastest way to append DOM nodes?

2009-02-24 Thread James
Here's a thread that will help you out: http://groups.google.com/group/jquery-en/browse_thread/thread/9889ebd5e10c9122 Create the table with any content, but leave out the Then use the looping method with the arrays. At the beginning and the end of the array before and after your loop, include

[jQuery] Re: IE6 - what's the absolute fastest way to append DOM nodes?

2009-02-24 Thread RobG
On Feb 25, 8:24 am, morgancodes wrote: > Hello, > I'm trying to squeeze out every last bit of performance I can from > IE6, and want to make sure there isn't a faster way than what I'm > doing. > > I'm doing about 180 iterations of somethig like the following > > parentElem = $("parentTable");

[jQuery] Re: IE6 - what's the absolute fastest way to append DOM nodes?

2009-02-24 Thread Dave Methvin
> Is there any way to do this faster? Create the full table in a string, including the tags, and insert it into the document at one time. Each time you insert an element into the document, the browser does some calculations and checks. By doing it in one insert you save it work. Whenever you're