JSFiddle - React, Tailwind, and code Playground

by Bhavik Bamania

HTML

<iframe id="finance-iframe" class="finance-iframe" src="https://google.com" width="100%" height="300px" marginheight="0" frameborder="0" onLoad="autoResize('finance-iframe');"></iframe>

JavaScript

function autoResize("finance-iframe"){
      var newheight;
      var newwidth;
    
      if(document.getElementById){
        newheight=document.getElementById("finance-iframe").contentWindow.document.body.scrollHeight;
        newwidth=document.getElementById("finance-iframe").contentWindow.document.body.scrollWidth;
      }
    
      document.getElementById("finance-iframe").height= (newheight) + "px";
      document.getElementById("finance-iframe").width= (newwidth) + "px";
    }