What is event bubbling?
- A An event travels from the target up through its ancestors to the root
- B An event travels from the root down to the target
- C An event fires repeatedly until handled
- D Multiple events firing simultaneously
Answer
An event travels from the target up through its ancestors to the root
Bubbling is the default phase for addEventListener and is what makes event delegation possible. Capturing is the opposite, downward phase.





