팝업창 위치를 화면 가운데로 오게 하기

By | 2월 17, 2009
function openPopup(){
 var width = 610;      //팝업창 너비
 var height = 380;     //팝업창 높이
 var winl = (screen.availWidth - width) / 2;     //팝업창 가로위치 (좌측에서부터)
 var wint = (screen.availHeight - height) / 2;   //팝업창 세로위치 (우측에서부터)
 window.open("/Buy.do?cmd=listCoupon"     //URL
                    , "CouponList"                       //팝업창 이름
                    , "width=" + width +             //속성 시작
                     ", height=" + height +
                     ", left=" + winl +
                     ", top=" + wint
     );
}
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments