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?

link|improve this question

56% accept rate
It's an object, if you want to extend it, just do so: ev.mySuperSpecialInfo = 42;. Even better, use your own system to store state. var eventState = 'reachedParent'; – davin Oct 9 '11 at 16:29
as i said ev.mySuperSpecialInfo is not dispatched in myparentdiv, because they are two totally different objects – wes Oct 9 '11 at 16:31
I thought you're using the second version? If not, you should be. – davin Oct 9 '11 at 16:33
1  
@davin but IE does not pass the event object as a parameter to the function. It's a global (that is, a property of window). – Pointy Oct 9 '11 at 16:38
Indeed! Note to self: best not to comment when asleep and dealing with old versions of IE. Still you can store your own state-machine. You should be able to perform primitive things without even that: referring to the target attribute 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
show 3 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.