JSFiddle - React, Tailwind, and code Playground
HTML
<img id="my_img" />
JavaScript
var newImage;
newImage = new Image();
newImage.onload = function() {
var domImg;
domImg = document.getElementById('my_img');
domImg.src = this.src;
domImg.width = this.width;
domImg.height = this.height;
}
newImage.width = 500;
newImage.height = 336;
newImage.src = 'http://hearstcommerce.ca/customcontent/members/premium/sample.jpg';