Browser support for stopImmediatePropagation?

javascript, jquery

Solution

The stopPropagation mentioned on the other answer is related to the method natively available on browser for the `event` object , while the `stopPropagation()` method of jQuery works fine in all browser (since it's a wrapper for the same task, taking into account the browser capabilities in which this method is run)

Problem

IE support for `stopPropagation()` is lacking, and requires workarounds, but I can't tell if the same thing is true for `stopImmediatePropagation()`- is it safe for all browsers, or does it requires its own set of workarounds?

Original source

Related problems