JSFiddle - React, Tailwind, and code Playground
by jboesch26
HTML
<button id="btn" style="width:80px;height:30px;padding:3px;border:1px solid #000">button</button>
<div id="d" style="width:50px;padding:7px;">something</div>
JavaScript
var w = $('btn').setStyle({ width: $('btn').getWidth() }).getWidth();
console.log(w);
var d = $('d').setStyle({ width: $('d').getWidth() }).getWidth();
console.log(d);
var h = $('btn').setStyle({ height: $('btn').getHeight() }).getHeight();
console.log(h);