I\'ve got an event handler that I\'m attaching to an element to catch a bubbled click event. I need a reliable way of obtaining the element that caught<
According to this article IE simply has no equivalent to currentTarget
. Therefore, if you can't find a way to bind the events such that you get the correct element in target/srcElement, you could try adding a class to the element that you want to catch the event and traversing the DOM tree up to this element.