인터넷정보

새창(팝업) 크기 자동조절(리사이즈,resize)

알 수 없는 사용자 2007. 10. 11. 17:10

function auto_resize()
{
try{

//------ 스크롤이 있을 때
// v_width = document.body.scrollWidth + 22;
// v_height = document.body.scrollHeight + 25;

//------ 스크롤이 없을 때

 v_width = document.body.scrollWidth + 6;
 v_height = document.body.scrollHeight + 25;

 window.self.resizeTo!(v_width,v_height);
}

반응형