JSFiddle - React, Tailwind, and code Playground
HTML
<img src='' />
JavaScript
$(function() {
var smallestGifPossible = 'data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==',
img = $('img');
img.on('load', function() {
console.log('done');
}).on('error', function() {
console.log('error');
img.attr('src', smallestGifPossible);
});
});