JSFiddle - React, Tailwind, and code Playground
by lollero
HTML
<img src="http://placekitten.com/200/300" alt="" />
JavaScript
$('img').each(function(){
$(this).load(function() {
console.log( $(this).width() );
console.log( $(this).height() );
});
});