I got it to work with this though:

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

Is that okay?

On Nov 9, 7:56 am, fambizzari <[EMAIL PROTECTED]> wrote:
> Thanks Renato, i didn't realise you were talking about that.
>
> On Nov 8, 8:58 pm, Renato Formato <[EMAIL PROTECTED]> wrote:
>
> > fambizzari ha scritto:> @Renato - Thanks for the example. But i didn't see 
> > it and i still
> > > can't see it.
>
> > Try 
> > here:http://groups.google.com/group/jquery-en/browse_thread/thread/31d4cc5...
>
> > Renato

Reply via email to