There is a crossbrowser implementation for the jQuery.Event.preventDefault () methods, jQuery.Event.stopPropagation () and jQuery.Event.stopImmediatePropagation () does not require jQuery?
I have a very specific resource that would not justify depending on jQuery, even for CDNs, which I do not trust.
From the jQuery.Event source code you can see that the three methods are prototyped based on their availability on the Event object.
But by "unofficial documentation" in MDN, event.stopPropagation () has browser availability restriction (Internet Explorer 9).
This stack of SOEN has an implementation that I found to be sufficiently compatible for the jQuery.preventDefault () , but what about the others?
The intent is just to know which "microsoftian" inventions are equivalent to each method of the Event, but to have a definite answer about possible fallbacks (even for KB enrichment of the site) and when or in which situations these fallbacks should or should be applied.