Better Broken Image Handling | CSS-Tricks

PHOTO EMBED

Fri May 29 2020 11:40:32 GMT+0000 (Coordinated Universal Time)

Saved by @Amna #jquery

// Replace source
$('img').on("error", function() {
  $(this).attr('src', '/images/missing.png');
});

// Or, hide them
$("img").on("error", function() {
  $(this).hide();
});
content_copyCOPY

https://css-tricks.com/snippets/jquery/better-broken-image-handling/