본문 바로가기

퍼블리싱/jQeury, Javascript

윈도우 팝업 열기(가운데정렬)

function popupFunc() {
  var screenW = screen.availWidth;  // 스크린 가로사이즈
  var screenH = screen.availHeight; // 스크린 세로사이즈
  var popW = 600; // 띄울창의 가로사이즈
  var popH = 600; // 띄울창의 세로사이즈
  var posL=( screenW-popW ) / 2;   // 띄울창의 가로 포지션 
  var posT=( screenH-popH ) / 2;   // 띄울창의 세로 포지션 

 window.open('popup.html','test','width='+ popW +',height='+ popH +',top='+ posT +',left='+ posL +',resizable=no,scrollbars=no');
}