JSFiddle - React, Tailwind, and code Playground

by chovy

HTML

<div id="foo">Foo</div>

JavaScript

(function(){
    
    var img = $('<img src="http://mms.space.swri.edu/MMSposter-large.jpg" alt="" />')
        img2 = $('<img src="http://lokeshdhakar.com/projects/lightbox2/images/image-2.jpg" alt="" />');
     
    $("#foo").append(img);
    $("#foo").append(img2);
    
    $("img").load(function(e){
        alert( $(this).width() + " : " + $(this).height() );
    });
})();