HTML events are things that happen to HTML elements. JavaScript can react to events using event handlers and event listeners.
| Event | Description |
|---|---|
| onclick | Mouse click |
| onmouseover | Mouse over element |
| onkeydown | Key pressed |
| oninput | Input value changes |
| onsubmit | Form submitted |
| onload | Page/image loaded |
| onresize | Window resized |
Edit the code below and click Run to see the result live.