Hey,

If you are referring to hovering your mouse over a div there is the
hover event:

$('#divid').hover(function(){
   // Implement code while mouse is hovering div
},function(){
  // Implement code while mouse leaves div
});

There are different mouse events too. Check them out at:

http://docs.jquery.com/Events

Hope this helps.

Greetz,

Rick

Reply via email to