Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is to Equivalent the Element Object in Internet explorer 9?

if (!Element.prototype.addEventListener) {
    Element.prototype.addEventListener = function() { .. } 
} 

How do this work in internet explorer?

if have an function equal to addEventListener and I don't know,explain please.

Any help would be appreciated. and feel free to suggest a completely different way of solving the problem. Thanks in advance!

share|improve this question
Whether a browser implements a prototype inheritance scheme for its DOM objects is not relevant to whether it supports the W3C EventTarget interface. If you wish to test for support, test it directly: if(element.addEventListener) {/*supported*/} else {/*not supported*/} is effective in all browsers and is independent of the implementation. – RobG Aug 3 '11 at 14:17

3 Answers

up vote 22 down vote accepted

addEventListener is the proper DOM method to use for attaching event handlers.

Internet Explorer (up to version 8) used an alternate attachEvent method.

Internet Explorer 9 supports the proper addEventListener method.

The following should be an attempt to write a cross-browser addEvent function.

function addEvent(evnt, elem, func) {
   if (elem.addEventListener)  // W3C DOM
      elem.addEventListener(evnt,func,false);
   else if (elem.attachEvent) { // IE DOM
      elem.attachEvent("on"+evnt, func);
   }
   else { // No much to do
      elem[evnt] = func;
   }
}
share|improve this answer
2  
The last condition should also include "on"+. – Marcel Korpel Feb 11 at 12:24

As Delan said, you want to use a combination of addEventListener for newer versions, and attachEvent for older ones.

You'll find more information about event listeners on MDN. (Note there are some caveats with the value of 'this' in your listener).

You can also use a framework like jQuery to abstract the event handling altogether.

$("#someelementid").bind("click", function (event) {
   // etc... $(this) is whetver caused the event
});
share|improve this answer

addEventListener is supported from version 9 onwards; for older versions use the somewhat similar attachEvent function.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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