Most events bubble in all browsers. However, I know that in Internet Explorer \"submit\" events do not bubble. What are the other events that do not bubble?
Any events specific to one element do not bubble: focus, blur, load, unload, change, reset, scroll, most of the DOM events (DOMFocusIn, DOMFocusOut, DOMNodeRemoved, etc), mouseenter, mouseleave, etc
load
unload
scroll
(except that a scroll event on document must bubble to the window)focus
blur
DOMNodeRemovedFromDocument
DOMNodeInsertedIntoDocument
loadstart
progress
error
abort
load
loadend
From: https://en.wikipedia.org/wiki/DOM_events#Events
I can't list all the events that do not bubble.
But I find a good site that can help you to check if the events can bubble or not.
@MDN event.bubbles
In addition to the rest answers, the load event on document elements bubbles, but it stops bubbling at the Document object and does not propagate on to the Window object. The load event of the Window object is triggered only when the entire document has loaded.
focus and blur events do not bubble