JSFiddle - React, Tailwind, and code Playground
HTML
<div id="grey"></div>
CSS
#grey {
position: absolute;
top: 50px; left: 50px;
width:200px; height: 200px;
background-color: #eee;
}
JavaScript
$(function(){
$('#grey').after("<img src='http://www.w3.org/html/logo/downloads/HTML5_Badge_128.png' />");
})