+ 1
Can someone explain the clear difference between bubbling and capturing and which one occurs or used when
8 Antworten
+ 8
It is about what topic
+ 8
These both are types of event handling in JavaScript. Bubbling is like inside to outside and capturing is like outside to inside.
In bubbling first inner element is handled and then outer.
In capturing first outer element is handled then inner.
+ 7
SHAILA BHAGWAT welcome
+ 2
Javascript dom propogation
+ 2
Yep I understand that but it want to understand it with some example
+ 2
OK thanks...