jQuery: The Write Less, Do More JavaScript Library

Events/mouseover

From jQuery JavaScript Library

Jump to: navigation, search

« Back to Events

mouseover( fn )

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