Sep
27
Stephen Stchur has written great posts in the past about cross browser events, and has revisited the topic with The Ultimate addEvent function article.You get to use the function a la:PLAIN TEXTJAVASCRIPT: var myDiv = document.getElementById(’myDiv’);xb.addEvent(myDiv, ‘click’, function(e) { alert(’The this keywords works (even in IE!): ‘ + this.id);}); and he has some nice commentary:So some of […]
More: continued here