<script language="javascript">
|
| function resize_frame(obj){
|
| var obj_document = obj.contentWindow.document;
|
| if(obj_document.height){
|
| obj.style.height = obj_document.height;
|
| obj.style.width = obj_document.width;
|
| } else {
|
| obj.style.height = obj_document.body.scrollHeight;
|
| obj.style.width = obj_document.body.scrollWidth;
|
| }
|
| }
|
| </script>
|
|
|
| <iframe src="페이지 주소" width='100%' height='100%' marginwidth='0' marginheight='0' frameborder='no' scrolling='no' onload='resize_frame(this)' name="iframe_list" id="iframe_list" target="_self"></iframe>
|