Is there a way to take the current target of an event with IE 7 or 8?
With other browser (firefox, opera, chrome etc.) we can use
event.currentTarget or also we can use the this keyword to
refer to the object processing the event.
But in Internet Explorer we don't have currentTarget property and the this refers to window object!
So how can I do that?
