jQuery Event MethodsOrder by Alphabet
This section contains a comprehensive list of event methods belonging to the latest jQuery JavaScript library. All the methods are grouped into categories.
Mouse Events
| Method | Description |
|---|---|
click() | Bind an event handler to be fired when the element is clicked, or trigger that handler on an element. |
dblclick() | Bind an event handler to be fired when the element is double-clicked, or trigger that event on an element. |
hover() | Bind one or two handlers to the selected elements, to be executed when the mouse pointer enters and leaves the elements. |
mousedown() | Bind an event handler to be fired when the mouse button is pressed within the element, or trigger that event on an element. |
mouseenter() | Bind an event handler to be fired when the mouse enters an element, or trigger that handler on an element. |
mouseleave() | Bind an event handler to be fired when the mouse leaves an element, or trigger that handler on an element. |
mousemove() | Bind an event handler to be fired when the mouse pointer moves within the element, or trigger that event on an element. |
mouseout() | Bind an event handler to be fired when the mouse pointer leaves the element, or trigger that event on an element. |
mouseover() | Bind an event handler to be fired when the mouse pointer enters the element, or trigger that event on an element. |
mouseup() | Bind an event handler to be fired when the mouse button is released within the element, or trigger that event on an element. |
toggle() | Deprecated in v1.8 Bind two or more handlers to the selected elements, to be executed on alternate clicks. Deprecated in favor of toggle() animation method. |