© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Afraz Momin
Software Developer, building apps, exploring the Cloud and writing tech blogs
The interactivity of our HTML web page is handled by Javascript. This interactivity is nothing but a bunch of events that the HTML elements undergo. An event can be something the browser does or something a user does. They tell us some change has hap...
Chris Bongers
Looking to get into development? As a full-stack developer I guide you on this journey and give you bite sized tips every single day 👊
Event bubbling still amazes me sometimes, you know you can add pointer-events: none on the parents to not have them trigger?
Oh yeah, I'm aware. We can achieve that using the stopPropagation() method.
Event bubbling/capturing is definitely one of the many awesome concepts of Javascript.
Chris Bongers
Looking to get into development? As a full-stack developer I guide you on this journey and give you bite sized tips every single day 👊
Event bubbling still amazes me sometimes, you know you can add pointer-events: none on the parents to not have them trigger?