Bind an event handler to the "mouseup" JavaScript event, or trigger that event on an element.
This method is a shortcut for .on('mouseup', handler) in the first variation, and .trigger('mouseup') in the second.
The mouseup event is sent to an element when the mouse pointer is over the element, and the mouse button is released. Any HTML element can receive this event.
For example, consider the HTML:
<div id="target">
Click here
</div>
<