vote up 1 vote down star

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' kewyword to refer the object received the event.

But in explorer we don't have currentTarget property and the 'this' refers to window object!

So how can I do that?

flag

70% accept rate
You may try google to answer this, I'm sure you will succeed. This question has been answered many times. – skrat May 13 at 15:03
yes I did it. But no answer founded...it seems that IE simply does not support that important feature (also IE 8) and every time I must develop with that browser the NIGHTMARES begin! – xdevel2000 May 14 at 7:50
you could always go down the JavaScript framework route like jQuery, Prototype, etc... to abstract the differences away – Russ Cam May 14 at 10:28

3 Answers

vote up 0 vote down

I use this method:

function eventTarget(event) {
  event = event || window.event;            // IE doesn't pass event as argument.
  return(event.target || event.srcElement); // IE doesn't use .target
}

It returns the target of an event in a way that will work in all browsers.

It can be used like this:

<a href="#" onclick="doSomething(eventTarget(event))">click me</a>

This will pass the link object to the function doSomething().

link|flag
vote up 1 vote down

I'm assuming that you're wanting to use the 'this' context because the same handler will be dealing with multliple posible objects. In that case, see the excellent AddEvent script from the quirksmode recoding contest. (http://www.quirksmode.org/blog/archives/2005/09/addevent_recodi.html). This code has allowed me to get the very last of my javascript out of html. More importantly, it seems to work on all of the browsers that I've tested. Simple and compact.

link|flag
vote up 0 vote down

Have you tried srcElement or originalTarget?

link|flag
srcElement is the IE property for the target and originalTarget is also the target and it is a mozilla specific property. I want to have the element where we have defined the handler. This property is currentTarget and it is in all browser but ie (AS USUALLY!!!!) – xdevel2000 May 13 at 14:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.