JSFiddle - React, Tailwind, and code Playground
by David Thomas
HTML
<img src="http://davidrhysthomas.co.uk/img/dexter.png" id="imageToTest" />
CSS
img {
width: 40px;
}
JavaScript
var img = document.getElementById('imageToTest'),
width = img.naturalWidth;
console.log(width);