레이블이 center인 게시물을 표시합니다. 모든 게시물 표시
레이블이 center인 게시물을 표시합니다. 모든 게시물 표시

2014년 4월 28일 월요일

팝업 창 중앙에 띄우기


브라우저의 팝업 창을 중앙으로 띄우기.

function windowOpenCenter(url, parm, width, height) {
var sw  = screen.availWidth ;
var sh  = screen.availHeight ;

px=(sw - width)/2 ;
py=(sh - height)/2 ;

var set  = 'top=' + py + ',left=' + px ;
set += ',width=' + width + ',height=' + height + ',toolbar=0,resizable=1,status=0,scrollbars=1' ;

   window.open (url + '?' + parm , '' , set) ;
}