JSFiddle - React, Tailwind, and code Playground

HTML

<img src="missing.photo.jpg">

JavaScript

$(function(){
		$('body').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"
		})
	})