if you try this in internet explorer you can see that the dispatched event is not unique during bubbling
var x;
myinnerdiv.onclick=function(){ x = window.event; };
myparentdiv.onclick=function(){ alert(x===window.event); };
// false, but should be the same!
in the standard equivalent:
var x;
myinnerdiv.onclick=function(ev){ x = ev; };
myparentdiv.onclick=function(ev){ alert(x === ev); };
// true, same object, retargeted
now, there is a way to uniquely mark an event, programmatically, to resolve this lack of functionality?
ev.mySuperSpecialInfo = 42;. Even better, use your own system to store state.var eventState = 'reachedParent';– davin Oct 9 '11 at 16:29eventobject as a parameter to the function. It's a global (that is, a property ofwindow). – Pointy Oct 9 '11 at 16:38targetattribute you should be able to discern whether you're in a parent or the actual element (if you don't need to know where you are in a more deeply nested DOM structure) – davin Oct 9 '11 at 16:49