Skip to content

Instantly share code, notes, and snippets.

@jasonkarns
Created May 8, 2015 14:30
Show Gist options
  • Save jasonkarns/f367c58149d9eda563bd to your computer and use it in GitHub Desktop.
Save jasonkarns/f367c58149d9eda563bd to your computer and use it in GitHub Desktop.
Kills DOMContentLoaded in Opera when executed prior to jquery
var DOMContentLoaded = function() {
document.removeEventListener('DOMContentLoaded', DOMContentLoaded);
document.body.appendChild(document.createElement('iframe'));
};
document.addEventListener('DOMContentLoaded', DOMContentLoaded);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment