Specific Event Binders

.blur([Any data][, function(Event e) handler]).change([Any data][, function(Event e) handler]).click([Any data][, function(Event e) handler]).dblclick([Any data][, function(Event e) handler]).focus([Any data][, function(Event e) handler]).focusin([Any data][, function(Event e) handler]).focusout([Any data][, function(Event e) handler]).keydown([Any data][, function(Event e) handler]).keypress([Any data][, function(Event e) handler]).keyup([Any data][, function(Event e) handler]).mousedown([Any data][, function(Event e) handler]).mouseenter([Any data][, function(Event e) handler]).mouseleave([Any data][, function(Event e) handler]).mousemove([Any data][, function(Event e) handler]).mouseout([Any data][, function(Event e) handler]).mouseover([Any data][, function(Event e) handler]).mouseup([Any data][, function(Event e) handler]).resize([Any data][, function(Event e) handler]).scroll([Any data][, function(Event e) handler]).select([Any data][, function(Event e) handler]).submit([Any data][, function(Event e) handler])
Bind an event handler to the specific events.
.hover(function(Event e) handlerIn, function(Event e) handlerOut)
Bind two handlers, to be executed when the mouse pointer enters or leaves the elements.
.ready(function() handler)Specify a function to execute when the DOM is fully loaded.
The following are the same:$(document).ready(handler)$().ready(handler)$(handler)