You can attach the mouseover event to the table but every time you mouseover any child element of the table that fuction will fire.
$('#myTable').mouseover(function(e) {
$(e.target).parents('tr');
});
That will get you the tr of element that was hovered.
Colin
2009-09-23 01:51:05