jQuery mouseup() Method
Example
Release the left mouse button over a <div> element to insert some text:
$("div").mouseup(function(){
$(this).after("Mouse button released.");
});
Try it Yourself »
Definition and Usage
The mouseup event occurs when the left mouse button is released over the selected element.
The mouseup() method triggers the mouseup event, or attaches a function to run when a mouseup event occurs.
Tip: This method is often used together with the mousedown() method.
Syntax
Trigger the mouseup event for the selected elements:
$(selector).mouseup()
Try it
Attach a function to the mouseup event:
$(selector).mouseup(function)
Try it
Parameter | Description |
---|---|
function | Optional. Specifies the function to run when the mouseup event is triggered |