자료/Javascript
resizeTo 오류 익스플로러7 IE7 대처법
네오블루
2007. 8. 7. 19:35
/*
// top.window.resizeTo(410,380);
// top.document.all.scrapMain.style.height = 380;
top.window.resizeTo(410,420);
top.document.all.scrapMain.style.height = 420;
*/
// IE7, 세로 사이즈 늘림(25px)
top.window.resizeTo(document.body.scrollWidth + 10, document.body.scrollHeight + 90);
top.document.getElementById("scrapMain").style.height = document.body.scrollHeight + 90;