Utilizor
Contact Us

DOM Events

Events in the Document Object Model.

DOM Events

HTML DOM events allow JavaScript to register different event handlers on elements in an HTML document.

Events are normally used in combination with functions, and the function will not be executed before the event occurs (such as when a user clicks a button).

Example

document.getElementById("myBtn").onclick = displayDate;