JSFiddle - React, Tailwind, and code Playground

by Salmin Skenderovic

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);
}