JSFiddle - React, Tailwind, and code Playground
HTML
<div id="i"></div>
JavaScript
var i = document.querySelector("#i");
var img = new Image();
var imgUrls =[""];
img.src = "https://webbutveckling-edudev.c9users.io/association/assets/materials/4333.png";
console.log("created");
img.onload = () => {
console.log("loaded");
//i.appendChild(img);
}