JSFiddle - React, Tailwind, and code Playground

HTML

<button>click</button>

CSS

img {
   height: 50px                
}

JavaScript

$("button").click(function(){
    $("<img>").insertAfter("button").load(function(){
        alert($(this).outerHeight()+" "+$(this).outerWidth() );
    }).attr("src","http://www.google.com/images/srpr/logo3w.png");
});