function resizeFrame(frm) { frm.style.height = "auto"; contentHeight = frm.contentWindow.document.documentElement.scrollHeight; frm.style.height = contentHeight + 150 + "px"; console.log("resizeFrame ::" + frm + "\n height :: " + contentHeight); window.scrollTo(0, 0); } window.onload = function() { console.log("window onload"); resizeFrame(document.getElementById("embeded-content")); }