1 | Checkboxes, buttons (radio, reset, submit) and hyperlinks: the onClick handler is called when the item is clicked |
2 | Select, text, textarea: the onChange handler is called when a change occurs in these fields |
3 | onMouseOver plays same role for links and image maps that onFocus does for form elements |
4 | onMouseOut is the opposite of onMouseover |
5 | Text or textarea: the onSelect handler is called when text is selected |
6 | onSubmit handler is called when the submit button on a form is clicked |
7 | onReset handler is called when the reset button on a form is clicked |