Created
September 21, 2012 13:11
-
-
Save Mansyn/3761370 to your computer and use it in GitHub Desktop.
Hide images that don't load (404)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function () { | |
// Hide any image that 404 | |
$('img').bind('error', function () { | |
$(this).hide(); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment