알아서 팝업사이즈 자동조절
function auto_fit_size() { window.resizeTo(100, 100); var thisX = parseInt(document.body.scrollWidth); var thisY = parseInt(document.body.scrollHeight); var maxThisX = screen.width - 50; var maxThisY = screen.height - 50; var marginY = 0; //alert(thisX + "===" + thisY); //alert("임시 브라우저 확인 : " + navigator.userAgent); // 브라우저별 높이 조절. (표준 창 하에서 조절해 주십시오.) if (navigator.userAgent.indexOf("MSIE 6") ..
HTML,CSS,JS
2008. 12. 5. 11:30
팝업창 리사이징
바디에 있는 onLoad를 체크하여 자체 팝업사이즈를 강제로 사이즈 지정을 한다.
HTML,CSS,JS
2008. 12. 3. 18:01