Indrajeet Giramcodewords.hashnode.dev·Jan 9, 2025Understanding Event Propagation, Bubbling, and Delegation in Web DevelopmentIn web development, events play a crucial role in creating interactive and dynamic user interfaces. Understanding how events work, how they propagate through the Document Object Model (DOM), and the techniques for handling them effectively is essenti...JavaScriptevent delegation
Asfak AhmedforfreeCodeCampfreecodecamp.org·Sep 16, 2024How to Use the JavaScript Selection API: Build a Rich Text Editor and Real-Time Element DetectionWhen you interact with web pages, a common task you’ll perform often is selecting text. Whether it's highlighting a section of a paragraph to copy, marking important parts of a document, or working with interactive features like note-taking or text e...selection api
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
Raj Sahurajblog.hashnode.dev·Mar 10, 2023JavaScript Events: Understanding How to Respond to User ActionsIntroduction JavaScript is a powerful programming language used to create interactive web pages. One of its most important features is its ability to handle events. An event is an action or occurrence that takes place on a web page, such as a user cl...1 like·85 readsJavaScript