[jQuery] Re: Slow performance in IE7

2008-03-28 Thread Sand Dragon
Karl, That was awesome. It still seems a little slow when applying the styles but definitely a good 80-90% performance increase overall and more than enough to bring the page back to usability for the regular users. Thanks so much for your timely response and assistance, it is much appreciated

[jQuery] Re: Slow performance in IE7

2008-03-27 Thread Karl Rudd
I've come up against this a few times. I now use this type of approach: $('table tr').each( function() { var row = $(this); row.hover( function() { setTimeout( function() { row.addClass('hover'); }, 0 ); }, fu