jQuery: Events Methods

Category Method Description
Form events blur Attaches or fires JavaScript "blur" event (when cursor go out from the input element).
change Attach or fire JavaScript "change" event.
focus Attach or fire JavaScript "focus" event.
focusin Attach event handler for "focusin" event.
select Attach or fire JavaScript "select" event.
submit Attach or fire JavaScript "submit" event.
Keyboard events keydown Attach or fire JavaScript "keydown" event.
keypress Attach or fire JavaScript "keypress" event.
keyup Attach or fire JavaScript "keyup" event.
focusout Attach or fire JavaScript "focusout" event.
Mouse events click Attach or fire JavaScript "click" event.
dblclick Attach or fire JavaScript "dblclick" event.
hover Attach one or two event handlers to be executed when mouse pointer enters or leaves selected element(s).
mousedown Attach or fire JavaScript "mousedown" event.
mouseenter Attach or fire event when mouse pointer enters in selected element(s).
mouseleave Attach or fire event when mouse pointer moves away from the selected element(s).
mousemove Attach or fire JavaScript "mousemove" event.
mouseout Attach or fire JavaScript "mouseout" event.
mouseover Attach or fire JavaScript "mouseover" event.
mouseup Attach or fire JavaScript "mouseup" event.
toggle Attach two or more handlers to the matched elements, to be executed on alternate clicks.
Browser events error Attach or fire JavaScript "error" event.
resize Attach or fire JavaScript "resize" event.
scroll Attach or fire JavaScript "scroll" event.
Document loading Load Attach or fire JavaScript "load" event.
ready Specify a function to be executed when DOM is loaded completely.
unload Attach or fire JavaScript "unload" event.
Want to check how much you know jQuery?