Mouse Click Events
The most recent event caught was: (none caught yet)
Event | Example |
---|---|
onclick | |
oncontextmenu | |
ondblclick | |
onmousedown | |
onmouseup |
Explanation for Event:
Click: onclick - The click of a mouse button.
Contextual Menu: oncontextmenu - The right click button to bring up the contextual menu.
Double Click: ondblclick - A simple double click of the mouse button.
Mouse Down: onmousedown - When the mouse button is down (same as Click).
Mouse Up: onmouseup - When the mouse button is up (same as Click).