Fork me on GitHub
  • Internet Explorer Hacks
  • pages
  • categories
  • tags

Get reference to the event object in IE

Ideal way:

el.onclick = function( e ) {
    // Handle the event "e"
};

IE way:

el.onclick = function( e ) {
    var evt = e || window.event;
    // Handle the event "evt"
}
  • category:
  • events 2
  • tags:
  • IE6 2
  • IE7 2
  • IE8 2
  • Get the target of a bubbling event »

Back to Top

about

  • Florian Margaine - florian@margaine.com
  • github.com/Ralt
  • twitter.com/fmargaine

Powered by Jekyll.