jQuery Events Reference

Last Updated Jul 21, 2015, 12:00:06 PM





jQuery Events Reference

The following table lists all the jQuery Event Methods.

Method Description Example
bind bind() event attaches or binds the handler to a specific event on the HTML elements. Try It
error error() event is used to bind event handler to an “error” in javascript event. Try It
resize resize()event method is called when the browser window size is changed. Try It
scroll scroll() event is used to bind the event handler to “scroll” javascript event . Try It
load load() event is used to bind an event handler to the “load” javascript event. Try It
ready ready() event method called when the DOM is fully loaded. Try It
keydown keydown() event is used to bind the event handler when the “keydown” action is perfomed. Try It
keypress keypress() event is used to bind an event handler to javascript “keypress” event Try It
keyup keyup() event is used to bind an event handler to the javascript "keyup" event Try It
hover hover() event is used to bind more than one handlers to the matched elements Try It
mouseup mouseup() event is used to bind an event handler to the javascript “mouse up” event. Try It
mousedown mousedown() event is used to bind event handler to the javascript “mouse down” event Try It
mouseenter mousesenter() event is used to bind an event handler to be executed when the mouse enters the HTML element. Try It
mousemove mousemove() event in jquery is used to bind an event handler to the javascript “mousemove” event. Try It
on on() event method is used to attach one or more handler to the matched elements in the DOM tree. Try It
delegate delegate() method is used to attach a handler to one or more events for all matched elements. Try It

Other jQuery Events you might want to learn

jQuery Events

jQuery Document Events

jQuery Keyboard Events

jQuery Mouse Events


Sources and Credits

The content and methods in the tutorial has been referred and updated with jQuery API and The jQuery Foundation

Last Updated Jul 21, 2015, 12:00:06 PM