JSFiddle - React, Tailwind, and code Playground
by Ben Watts
HTML
<img src="http://placehold.it/350x150" />
JavaScript
$(function () {
$('img').load(function () {
var theWidth = $(this).width();
var theHeight = $(this).height();
$(this).attr({
"width": theWidth,
"height": theHeight
});
});
});