jQuery: The Write Less, Do More JavaScript Library

Events/mouseup

From jQuery JavaScript Library

Jump to: navigation, search

« Back to Events

mouseup( fn )

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