Event bubbling is series of events when : An event is triggered on the inner most element first and then it triggers on the parent elements in nested order.
DOM elements could be nested inside each other. The handler of the parent works even if you click on it’s child. Event bubbling can make this happen.
Event Capturing is the opposite of bubbling where the event is triggered on the outer most element and then it triggers the inner children in nested order.