jQuery: The Write Less, Do More JavaScript Library

Events/mouseout

From jQuery JavaScript Library

Jump to: navigation, search

« Back to Events

mouseout( fn )

Bind a function to the mouseout event of each matched element.
The mouseout event fires when the pointing device is moved away from an element.
Arguments:
fnFunction
A function to bind to the mouseout event on each of the matched elements.
function callback(eventObject) {
  this; // dom element
}