JSFiddle - React, Tailwind, and code Playground

by Ralt

JavaScript

var img = document.createElement('img')
img.src = 'http://d24w6bsrhbeh9d.cloudfront.net/photo/3994924_460s.jpg'
img.onload = function() {
    console.log( this.width )
    console.log( this.height )
    document.body.appendChild(this)
}