JSFiddle - React, Tailwind, and code Playground
by Roydon DSouza
HTML
<img src="http://doc.jsfiddle.net/_downloads/jsfiddle-desktop-1440x900-a.png" width="480" height="300">
JavaScript
function getImageSize(url, callback){
$('<img/>').attr('src', url).load(function(){
callback(this.width, this.height);
});
}
getImageSize($("img").attr('src'), function(width, height){
console.log(width, height);
});
//https://capdroid.wordpress.com/2015/03/02/html-jquery-find-actual-size-of-image-in-tag/