JSFiddle - React, Tailwind, and code Playground

by Galled

HTML

<div id="test">Hello</div>

JavaScript

$(function(){
    var jTest = $('#test');
    
    console.log('The height:',jTest.innerHeight());
    
    jTest.append('<div><br/>How are you?</div>');
    console.log('The height:',jTest.innerHeight());
    
});