다음 코드 블록은 팝업 div를 항상 화면 중앙에 유지하므로 모든 사람에게 도움이 되기를 바랍니다.
//항상 지정된 DIV를 화면 중앙
function setDivCenter(divName){
var top = ($(window).height() - $(divName).height())/2
var left = ($( window).width () - $(divName).width())/2;
var scrollTop = $(document).scrollTop()
var scrollLeft = $(document).scrollLeft(); 🎜> $( divName).css( { position : 'absolute', 'top' : top scrollTop, left : left scrollLeft } ).show()
}