question for jquery experts here

2010-12-17 Thread fun and learning
hi All - I am using the following jquery script to hover and click on table rows: $(.simplehighlight).click(function() { $(this).children().addClass('clicked'); $(this).siblings().children().removeClass('clicked'); }); $(.simplehighlight).hover(function() {

RE: question for jquery experts here

2010-12-17 Thread Rick Faircloth
Send some of your table over, so I can set up a test... Rick -Original Message- From: fun and learning [mailto:funandlrnn...@gmail.com] Sent: Friday, December 17, 2010 3:00 PM To: cf-talk Subject: question for jquery experts here hi All - I am using the following jquery script

Re: question for jquery experts here

2010-12-17 Thread Lists
Without seeing your code I'd wager that the problem is you're assigning too many event handlers with your selector. Rather than putting a class on every row of a table, put an I'd on the table and use this instead. $('#myTable tr') I'll bet that you'll get better performance. On Dec 17,