Muhammad Bilalmbilal546.hashnode.dev·Jan 18, 2024JavaScript Events (Part-1): Events, their types, and handlers in JavaScript in-depthWhat are events in JavaScript? Events are actions or occurrences that happen in the browser environment, such as user interactions (clicks, keypresses, form submissions), page loading, data fetching, or system-level changes. JavaScript allows you to ...mouse events in javascript
Ionut Ciprian ANESCUitisciprian.hashnode.dev·Jan 16, 2024Understanding Event Delegation in JavaScriptEvent delegation is a powerful pattern in JavaScript that leverages the concept of event bubbling to handle events at a higher level in the DOM than the element on which the event originated. It allows us to attach a single event listener to a parent...EventDelegation