JSFiddle - React, Tailwind, and code Playground

by adamovic

HTML

<iframe style="width: 100%; height: 100px; background-color: red" id="i1" >
</iframe>

JavaScript

$( document ).ready(function() {
    window.setTimeout(resize, 2000);
});  

function resize() {
console.log("resized");
  $('#i1').height('50px');
}