Imagine I have this code:
var myFunc1 = function(event) { alert(1); } var myFunc2 = function(event) { alert(2); } element.addEventListener(\'click\'
The DOM Level 3 method event.stopImmediatePropagation is exactly what I need here. Unfortunately, it's not currently implemented in any browser (that I know of).