Ok... here we go... I got it to work with this...

        $("table tbody")
        .mouseover(function(e)
        {
                $(e.target).parents('tr').addClass('over');
        })
        .mouseout(function(e)
        {
                $(e.target).parents('tr').removeClass('over');
        });

Thanks.

Reply via email to