You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
jQuery event aliases like .load, .unload or .error are deprecated since jQuery 1.8, try to register listeners instead. In short replace $(this).load(function() with $(this).on("load", function(), it should work
$("img").unveil(200, function() {
$(this).load(function() {
this.style.opacity = 1;
});
});
Firefox does not work!
The text was updated successfully, but these errors were encountered: