Skip to content

Instantly share code, notes, and snippets.

@hzr
Created September 2, 2011 14:32
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