JSFiddle - React, Tailwind, and code Playground
HTML
<img src="https://www.google.com.br/images/srpr/logo11w.png" />
<img src="https://www.google.com.br/images/srpr/x.png" />
CSS
.failToLoad {
border: 5px solid red;
}
JavaScript
$('img').each(function() {
if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) {
$(this).addClass('failToLoad');
}
});