JSFiddle - React, Tailwind, and code Playground
by kachibito
HTML
<img src="nothing.jpg" />
JavaScript
$(document).ready(function() {
$('img').addClass('miss');
$('img.miss').error(function() {
$(this).attr({
src: 'http://kachibito.net/wp-content/uploads/2011/10/00-black.jpg',
alt: 'none image',
style:'border: 1px solid #eee;width:150px;height:150px;margin:25px;'
});
});
});