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:
| fn | Function | |
|---|---|---|
A function to bind to the mouseout event on each of the matched elements.
function callback(eventObject) {
this; // dom element
}
| ||