[iframe 크기 조정] iframe 안의 컨텐츠 사이즈만큼 창 크기 수정 function resizeIframe(obj) { if (obj.contentDocument) { obj.height = obj.contentDocument.body.offsetHeight; } else { obj.height = obj.contentWindow.document.body.scrollHeight; } } Carpe Programming/javascript 2012.10.08