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