忍者ブログ
26 December

iframe 高さを自動調整する

http://www.allinthemind.biz/markup/javascript/iframe.html

このサイトのコードを使用した
Chromeで余白が出まくった。firefoxでは確認してない。
そのため、「追記」にあるそれの対応してあるコードを使ったらOKだった

$('iframe')
.on('load', function(){
  try {  
    $(this).height(0);
    $(this).height(this.contentWindow.document.documentElement.scrollHeight);
  } catch (e) {
  }
})
.trigger('load');


いまどきiframeのサイトとかふざけんじゃないよ
それをレスポンシブにしたいとか…くそめんどくせえ
iframeの調整だけで時間かかりまくり


PR