The solution i adopted was CSS (tr:hover) for non-IE6 and only allow small tables to have hover-over using a class name to identify them.
Any better solutions? On Nov 6, 10:45 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > The following code works fine on small tables: > > $("table tbody > tr").mouseover(function(){$(this).addClass("over");}).mouseout(function(){$(this).removeClass("over");}); > > But on tables with 5,000-10,000 rows, it throws the "A script on this > page may be busy, or it may have stopped responding. You can stop the > script now, open the script in the debugger, or let the script continue." > > Can anyone suggest a workaround? > > Thanks