Layout Options

  • Fixed Header
    Makes the header top fixed, always visible!
  • Fixed Sidebar
    Makes the sidebar left fixed, always visible!
Introduction
Webconcept

Description

The mousedown event occurs when the mouse pointer is over an element, and the mouse button is pressed down.

Unlike the click event, the mousedown event only requires the button to be pressed down, not released.

The mousedown() method triggers the mousedown event, or if the function parameter is set, it specifies what happens when a mousedown event occur.


Trigger the Event

Trigger the mousedown event for the selected element.

v1.0

This method has the form:

.mousedown()

Return Value

This form returns a jQuery object.


Bind a Function to the Event

Specifies a function to run when the mousedown event is triggered for the selected element.

v1.0

This method has the alternate form:

.mousedown(function)
Parameter Description
function (optional) Specifies the function to run when the mousedown event is triggered

Return Value

This form returns a jQuery object.


v1.4.3

This method has the alternate form:

.mousedown(data,function)
Parameter Description
data (optional) Specifies additional data to pass along to the function
function (optional) Specifies the function to run when the mousedown event is triggered

Return Value

This form returns a jQuery object.

Examples

Hide or show an element when a mouse button is pressed down:

$("button").mousedown(
  function(){
  $("p").slideToggle();
});

Description

The mouseup event occurs when the mouse pointer is released over an element.

Unlike the click event, the mouseup event only requires the button to be released. It will be triggered on the element the mouse pointer is over when the button is released.

The mouseup() method triggers the mouseup event, or if the function parameter is set, it specifies what happens when a mouseup event occur.


Trigger the Event

Trigger the mouseup event for the selected element.


This method has the form:

.mouseup()

Bind a Function to the Event

Specifies a function to run when the mouseup event is triggered for the selected element.

v1.0

This method has the alternate form:

.mouseup(function)
Parameter Description
function (optional) Specifies the function to run when the mouseup event is triggered

Return Value

This form returns a jQuery object.


v1.4.3

This method has the alternate form:

.mouseup(data,function)
Parameter Description
data (optional) Specifies additional data to pass along to the function
function (optional) Specifies the function to run when the mouseup event is triggered

Return Value

This form returns a jQuery object.

Examples

Hide or show an element when a mouse button is released:

$("button").mouseup(function(){
  $("p").slideToggle();
});