Pointless One

On load event in Opera

A quick note for myself.

Opera for some reason doesn’t like bubbling load event handlers. It will just skip it. So you have to capture it to make it work in Opera. Like this:

1
2
3window.addEventListener('load', function(){
  // yay!
}, false); // <= here's the tricky part
October 3rd, 2011 19:49