function resizeFrame(elementId) {
var height = document.getElementById(elementId).contentWindow.document.body.scrollHeight;
$("#" + elementId).css("height", height);
}
<iframe onload="resizeFrame(this.id);" id='test'>
ie랑 firefox랑 불러오는게 다르다는데..
크롬이랑 ie에서 테스트한 결과 제대로 동작했다.
'Front-Html > Jquery' 카테고리의 다른 글
jquery iframe load 처리 (2) | 2011.12.05 |
---|---|
jQuery로 select box tag Control (1) | 2011.10.27 |
jquery cookie plugin (2) | 2010.12.30 |
jquery plugin blockUI (1) | 2010.04.09 |
jquery (2) | 2010.04.07 |