This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
notes:html_cheat_sheet [2026/06/07 01:32] 150.5.132.66 old revision restored (2026/05/30 06:20) |
notes:html_cheat_sheet [2026/06/07 15:58] (current) 213.194.156.245 old revision restored (2026/05/29 22:46) |
||
|---|---|---|---|
| Line 157: | Line 157: | ||
| * accesskey (character) and tabindex (integer) attributes can be used to make a page keyboard-friendly. | * accesskey (character) and tabindex (integer) attributes can be used to make a page keyboard-friendly. | ||
| + | * Events allow scripts to be registered for certain user actions. There are four types of events : | ||
| + | * window events are only valid in a body or frameset element: onload, onunload. | ||
| + | * form element events: onchange, onselect, onreset, onsubmit, onblur, onfocus | ||
| + | * keyboard events: onkeydown, onkeypress, onkeyup | ||
| + | * mouse events: onclick, ondblclick, onmousedown, | ||