HTML Events

What are HTML Events?

HTML Events are user interactions or browser-triggered actions like clicking, scrolling, typing, or focusing. They allow web pages to respond dynamically and create interactive user experiences.

Types of HTML Events

  1. Mouse Events: Clicking, hovering, dragging, etc.
  2. Keyboard Events: Detecting key presses like typing or shortcuts.
  3. Form Events: Triggered during form submission or input changes.
  4. Focus Events: When elements gain or lose focus.
  5. Window Events: Resizing, scrolling, or loading a web page.

Handling Events

  1. Inline Attributes: Using onclick, onmouseover, etc., directly in HTML.
  2. JavaScript Listeners: Attach event listeners using JavaScript for better flexibility.

HTML Events

Event HTML Attribute Description Example Code
Click onclick Triggered when an element is clicked <button onclick="alert('Clicked!')">Click Me</button>
Mouseover onmouseover Triggered when the mouse pointer is over an element <div onmouseover="alert('Mouse over!')">Hover Here</div>
Mouseout onmouseout Triggered when the mouse pointer leaves an element <div onmouseout="alert('Mouse out!')">Move out of here</div>
Submit onsubmit Triggered when a form is submitted <form onsubmit="alert('Form Submitted!')"> Submit        Form          ...      
Focus onfocus Triggered when an element gains focus <input onfocus="alert('Focus on input!')"        type="text">
Blur onblur Triggered when an element loses focus  inputs blur testing code...
Change onchange Triggered when a value changes in a form field  ...input fields dynamically binding event changes...

 

Summary

HTML Events track user interactions and browser actions to make websites interactive. They are managed using inline attributes or JavaScript listeners.