JSFiddle - React, Tailwind, and code Playground

HTML

<div id="div1"></div>
<div id="div2">div2</div>

CSS

#div1{
    height:20px
}

JavaScript

alert('div1:'+$('#div1').height()+'px ; div2:'+$('#div2').height()+'px');