События (Events)

http://jsfiddle.net/LFez4/2/

dblclick()
http://jsfiddle.net/LFez4/7/

click() The function is executed when the user clicks on the HTML element.

dblclick() The function is executed when the user double-clicks on the HTML element.

mouseenter() The function is executed when the mouse pointer enters the HTML element.
http://jsfiddle.net/LFez4/22/
http://jsfiddle.net/LFez4/23/

mouseleave() The function is executed when the mouse pointer leaves the HTML element.
http://jsfiddle.net/LFez4/25/

mousedown() The function is executed, when the left mouse button is pressed down, while the mouse is over the HTML element.

mouseup() The function is executed, when the left mouse button is released, while the mouse is over the HTML element.

hover() (combination of the mouseenter() and mouseleave() )
если 2 функции, то первая отвечает за mouseenter, вторая за mouseleave
http://jsfiddle.net/LFez4/27/
http://jsfiddle.net/Vn9Hm/10/

focus() The function is executed when the form field gets focus.
http://jsfiddle.net/nQF4R/2/

blur() The function is executed when the form field loses focus.
http://jsfiddle.net/nQF4R/4/

@темы: jQuery, jQuery Учебка