iframe auto resize


iframe auto resize

<iframe src="..." frameborder="0" scrolling="no" onload="resizeIframe(this)" /> <script> function resizeIframe(obj) { obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px'; } </script> 출처 : http://stackoverflow.com/questions/9975810/make-iframe-automatically-adjust-height-according-to-the-contents-without-using Make iframe automatically adjust height according to the contents without using scrollbar? For example: <iframe name="Stack" src="http://stackoverflow.com/" width="740" f...



원문링크 : iframe auto resize