iframe内のコンテンツサイズに応じて、frameの高さを動的に変更する方法 docFrame.contentDocument.body.scrollHeight でも docFrame.contentWindow.document.body.scrollHeight でもサイズ取得できた。contentWindowがw3c基準でない。 動作確認バージョン IE9 Chrome 39.0 FireFox 33 <!DOCTYPE HTML> <html> <script type="text/javascript"> <!-- function change_frame_height(frm){ var contentsHeight; var docFrame = document.getElementById(frm); try{ contentsHeight = docFrame.c