In the DOM2 event propagation, what occurs during the capturing phase? Registere
ID: 3902296 • Letter: I
Question
In the DOM2 event propagation, what occurs during the capturing phase?
Registered and enabled event handlers are executed along the way from root to the target node
Registered but not enabled event handlers are executed along the way from root to the target node
Registered but not enabled event handlers are executed along the way from target to the root node
Registered and enabled event handlers are executed along the way from target to the root node
Registered and enabled event handlers are executed along the way from root to the target node
Registered but not enabled event handlers are executed along the way from root to the target node
Registered but not enabled event handlers are executed along the way from target to the root node
Registered and enabled event handlers are executed along the way from target to the root node
Explanation / Answer
Answer:->
Registered and enabled event handlers are executed along the way from root to the target node.
The capturing phase is used very rarely, usually, we handle events on bubbling phase.