';// Write HTML into the frame i.srcdoc = doc;// Auto-resize the frame to fit content function resize(){ try{ var h = i.contentWindow.document.documentElement.scrollHeight || i.contentWindow.document.body.scrollHeight; if (h) i.style.height = h + "px"; }catch(e){} } i.addEventListener('load', function(){ resize(); setTimeout(resize, 120); }); window.addEventListener('resize', resize); })();