Skip to content

Instantly share code, notes, and snippets.

@hzr
Created September 2, 2011 14:32
Show Gist options
  • Select an option

  • Save hzr/1188747 to your computer and use it in GitHub Desktop.

Select an option

Save hzr/1188747 to your computer and use it in GitHub Desktop.
Disable stupid lazy loading of images
window.opera.addEventListener("AfterScript", function(e) {
if (typeof jQuery != "undefined" && jQuery.prototype.lazyload) {
jQuery.prototype.lazyload = function() {};
}
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment