JSFiddle - React, Tailwind, and code Playground

HTML

<img src="http://placehold.it/350x150" />

JavaScript

$('body').find('img').each(function( index ) {
            var theWidth = index.width();
            var theHeight = index.height();

            index.attr({"width": theWidth, "height": theHeight});
    });