Intrinsic event Handling Attributes
| onclick | onclick="script" | script run when the element is clicked
|
| ondblclick | ondblclick="script" | script run when the element is double-clicked
|
| onmouseover | onmouseover="script" | script run when when the mouse pointer hovers over the element
|
| onmouseout | onmouseout="script" | script run when the mouse pointer leave the element
|
| onmousedown | onmousedown="script" | script run when the mouse button is pressed down
|
| onmouseup | onmouseup="script" | script run when the mouse button is released, after being pressed down
|
| onmousemove | onmousemove="script" | script run when the mouse pointer moves over the element.
|
| onkeypress | onkeypress="script" | script run when a key is pressed while the element has focus.
|
| onkeydown | onkeydown="script" | script run when a key is held down while the element has focus.
|
| onkeyup | onkeyup="script" | script run when a key being held down is released while the element has focus.
|