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!
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