JSFiddle - React, Tailwind, and code Playground
by robindrexler
HTML
<img src="https://imgur.com/RrupgUW.jpg" width="250" />
JavaScript
const img = document.querySelector('img');
img.onload = () => {
const {
width,
height,
naturalWidth,
naturalHeight
} = img;
console.log({
width,
height,
naturalWidth,
naturalHeight
})
}
if (img.complete) {
img.onload();
}