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

Reply via email to