Skip to content

Instantly share code, notes, and snippets.

@Mansyn
Created September 21, 2012 13:11
Show Gist options
  • Save Mansyn/3761370 to your computer and use it in GitHub Desktop.
Save Mansyn/3761370 to your computer and use it in GitHub Desktop.
Hide images that don't load (404)
$(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