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