HTML events can trigger actions in a browser.
Every element on an HTML page has events which can trigger a JavaScript.
For example, we can use the onClick event of a button element to indicate that a function will run when a user clicks on the button. We define the events in the HTML tags.
Examples of events:
In the following example, Content of the h1 element will change when a user clicks on it:
You can also add the script in the head section, and then call a function from the event handler:
For all HTML events, look at our complete HTML DOM Event Object Reference.
onmousedown and onmouseupChange an image when a user holds down the mouse button.
onloadDisplay an alert box when the page has finished loading.
Your Query was successfully sent!