The tables below list the methods for individual jQuery events and their descriptions:
Name |
Description |
click |
A mouse button was clicked on a control. The event occurs after the mouse button was released.
|
mousedown |
Mouse button pressed. |
mouseup |
The mouse button is released. |
dblclick |
Double click. |
mousemove |
The mouse pointer moves within the element's display area.
|
mouseover |
The mouse pointer is inside the element's display area.
|
mouseout |
The mouse pointer has moved outside the element's display area. |
mouseenter |
The mouse pointer is inside the element's display area. |
mouseleave |
The mouse pointer has moved outside the element's display area. |
hover |
Mouse pointing and moving away. |
Name |
Description |
change |
The element loses input focus, and the element's content changed while the element had focus.
|
select |
Some part of the text inside the element becomes highlighted. |
submit |
The "Submit" button has been pressed in the form, but the form has not yet been sent to the server.
|
blur |
The control loses input focus, i.e. the cursor moves to another element.
|
focus |
The displayed element has received input focus. For text fields, this event means that the cursor is already in the element.
|
focusin |
The displayed element has received input focus. For text fields, this event means that the cursor is already in the element.
|
focusout |
The control loses input focus, i.e. the cursor moves to another element.
|