I am interested in Computer science and Mathematics.
Javascript Tutorial 11 Events
June
27th,
2017
HTML events are “things” that happen to HTML elements.
When JavaScript is used in HTML pages, JavaScript can “react” on these events.
Here are some examples of HTML events:
An HTML web page has finished loading
An HTML input field was changed
An HTML button was clicked
Here is a list of some common HTML events:
Event
Description
onchange
An HTML element has been changed
onclick
The user clicks an HTML element
onmouseover
The user moves the mouse over an HTML element
onmouseout
The user moves the mouse away from an HTML element
onkeydown
The user pushes a keyboard key
onload
The browser has finished loading the page
Below are all the same:
<buttononclick="document.getElementById('demo').innerHTML = Date()">The time is?</button><buttononclick="this.innerHTML = Date()">The time is?</button><buttononclick="displayDate()">The time is?</button>