Examples of mouse events
click me, again, double click!
move, move, move
move, move, move
mousedown
( fn ) - mouse click
mouseup
( fn ) - to let go mouse click
click
( fn ) - click on the element
dblclick
( fn ) - double click on the element
mousemove
( fn ) - cursor movement
mouseenter
( fn ) - hover over the element, not true when changing the focus to the child elements
mouseleave
( fn ) - cursor leaving the element, not true when changing the focus to the child elements
mouseout
( fn ) - cursor leaving the element
mouseover
( fn ) - hover over the element
Back to article