Hi,

you should be able to do it like so:


$('tr:gt(0)').hover(function() {
  // Stuff to do when the mouse enters the row;
}, function() {
  // Stuff to do when the mouse leaves the row;
});


--Karl
____________
Karl Swedberg
www.englishrules.com
www.learningjquery.com




On Jun 26, 2008, at 11:27 AM, aldomatic wrote:


I'm having a difficult time figuring out how to add a hover effect on
all but the first table row (tr).

I appreciate anyone's help.

Thanks!

Reply via email to