JSFiddle - React, Tailwind, and code Playground

by Alexandre Simoes

JavaScript

(function(){

    var body = document.getElementsByTagName('body')[0],
       	img = document.createElement('img');
    
    img.src = 
        'https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png?_=' 
        + new Date()*1;
    
    img.onload = function(){ 
        alert('done'); 
    };
    
    body.appendChild(img);
    
})();