function resizeIframe() { var iframe = document.getElementById('dynamic-iframe'); if (iframe) { iframe.style.height = iframe.contentWindow.document.body.scrollHeight + 'px'; } } window.onload = resizeIframe; window.onresize = resizeIframe;