JSFiddle - React, Tailwind, and code Playground

by Purag Moumdjian

HTML

<div>
   <img src="http://www.hurriyet.com.tr/_np/7203/17287203.jpg" />
</div>

CSS

img { width:auto; }

JavaScript

var img = $('img'),
    imgHeight = img.css("width","auto").height();
img.css("width","0");
alert(imgHeight);