Skip to content

Instantly share code, notes, and snippets.

View Mansyn's full-sized avatar

Stephen Schaal Mansyn

  • NextGen Federal Systems
  • Franklin, OH
View GitHub Profile
@Mansyn
Mansyn / Image 404 hide
Created September 21, 2012 13:11
Hide images that don't load (404)
$(document).ready(function () {
// Hide any image that 404
$('img').bind('error', function () {
$(this).hide();
});
});