JSFiddle - React, Tailwind, and code Playground

by alexdickson

HTML

<img src="/dont-exist/" alt="" />
<img src="http://www.gravatar.com/avatar/57024b2da210921d42639e3ca509afe8?s=32&d=identicon&r=PG" alt="" />

CSS

img {
 width: 30px;
 height: 30px;   
 border: 2px solid black   
}

JavaScript

$('img').bind('error', function() {
    $(this).css({ border: '5px solid red' });
});