I've got a huge table (like a few thousand rows), and when I click a row, I do something simple like changing the color of the row. The problem is, when I click a row, it takes a really long time (1 second) to change the color. I see this in Chrome and Safari. But when I try it in Firefox or Opera, it's supersnappy.
I thought event delegation (instead of binding an event listener to each row, a parent div takes care of all events) would fix it, but no, it remains te same.
Any help?