JSFiddle - React, Tailwind, and code Playground

by Subin Siby

HTML

<div id='left'>
    blah blah<br/>
    more blah<br/>
    I wonder who will win the Indian elections.
</div>
<div id='right'>
a
</div>
<div id="status"></div>

JavaScript

$(document).ready ( function(){
 var divHeight = $('#left').height();
 $('#right').height(divHeight);
    $("#status").html(
        "Height Of Left One :"+divHeight+"<br/>"+
        "Height Of Right One :"+ $("#right").height()
    );
});