Answer
Bubbling: child ? parent
Capturing: parent ? child
stopPropagation() prevents bubbling.
preventDefault() stops default action.
Helpful for forms and nested DOM handling.
Capturing: parent ? child
stopPropagation() prevents bubbling.
preventDefault() stops default action.
Helpful for forms and nested DOM handling.