JSFiddle - React, Tailwind, and code Playground

HTML

<img src="http://www.catpets.org/images/adult-siamese-cat.jpg" /><br />
<img src="http://www.dummy.org/images/adult-siamese-cat.jpg" /><br />
<img src="http://www.norskmagi.co.uk/image/web%20cats%20and%20kittens%20010.jpg" />

JavaScript

$(document).ready(function(){ 
    $("img").each(function(index) {
        $(this).error(function() {
            $(this).hide();     
        });
        $(this).attr("src", $(this).attr("src"));
  });    
});