JavaScript Tutorial

The language for programming web pages.

JS Events

JavaScript Events

HTML events are things that happen to HTML elements. JavaScript can react to events using event handlers and event listeners.

Common Events:

EventDescription
onclickMouse click
onmouseoverMouse over element
onkeydownKey pressed
oninputInput value changes
onsubmitForm submitted
onloadPage/image loaded
onresizeWindow resized

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics