JSFiddle - React, Tailwind, and code Playground

by clayshannon

HTML

<div id="bawdy"></div>

JavaScript

$(function(){
		$('#bawdy').append('<img src="missing.photo.jpg">')
		.find('img').error(function(){
			this.src= "http://www.gravatar.com/avatar/317f4b62da2b0186feac9b6209793505?s=80&d=http%3A%2F%2Fimg.zohostatic.com%2Fdiscussions%2Fv1%2Fimages%2FdefaultPhoto.png";
		});
	});