JSFiddle - React, Tailwind, and code Playground

by jihoon kim

HTML

<iframe id="myFrame" style='width:100%' scrolling=no frameborder=0 src='http://www.numerics.info/calculator' onLoad="setIFrameHeight(this)"></iframe>

JavaScript

function setIFrameHeight(obj){
		var h = 0;
    alert( h ) ;    
    if(obj.contentDocument){
    		h = obj.contentDocument.body.offsetHeight + 40;
    } else {
        h = obj.contentWindow.document.body.scrollHeight;
    }

    obj.height = h;    
}