Hi Rick! yes, over a div. But I need to know if the mouse is or not over it. I made it setting a flag in the callbacks of the hover event:
// show/hide gallery var is_over = false; $("#ftdest_forum").hover(function(){ is_over = true chvis(1.0) }, function(){ is_over = false chvis(0.0) }) Thank you! Rick van Hoeij escreveu: > Hey, > > Don't know if you mean when you hover over a div? Cause then you > should just use the hover event: > > $('#divid').hover(function(){} > //Implement code while hovering > ,function(){ > // Implement code when you exit the div > }); > > Hope this helps. > > Greetz, > > Rick >