JSFiddle - React, Tailwind, and code Playground

by Augustus Yuan

HTML

<div id="append-img">Appended Image</div>

JavaScript

(function() {
  setTimeout(() => {
    const img = document.createElement("img");
    img.setAttribute("src", "https://i.guim.co.uk/img/media/fe1e34da640c5c56ed16f76ce6f994fa9343d09d/0_174_3408_2046/master/3408.jpg?width=620&quality=85&auto=format&fit=max&s=56d5de4c5609ca98def0c3382bd569b4")
    document.getElementById("append-img").append(img)
  }, 5000);
})()