📚 Table of Contents
- What are Events?
- Event Listening
- Event Actions
- Methods of Attaching Events
- Event Bubbling & Capturing
- Event Object
- Event Delegation
- Removing Event Listeners
1️⃣ What are Events?
Events are actions or occurrences that happen in the browser:
- Mouse clicks
- Double clicks
- Mouse movements (hover)
- Scrolling
- Keyboard inputs
Key Point: Events happen continuously on a webpage, whether you listen to them or not.