1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | function openFullWindow(Option) { var screenSizeWidth,screenSizeHeight; if (self.screen) { screenSizeWidth = screen.width ; screenSizeHeight = screen.height; } documentURL = "./gisa_pop.html"; //팝업창에 출력될 페이지 URL windowname = "wmname"; intWidth = screenSizeWidth; intHeight = screenSizeHeight; intXOffset = 0 ; intYOffset = 0 ; if(Option){ obwindow = window.open(documentURL,windowname, "fullscreen=yes, toolbar=no, location=no, directories=no, status=no, menubar=no,scrollbars=no,resizable=no") ; } else { obwindow = window.open(documentURL,windowname, " toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes,resizable=no") ; obwindow.resizeTo(intWidth, intHeight) ; obwindow.moveTo(intXOffset, intYOffset); } } | cs |
윈도우 팝업을 풀사이즈로 키우는 소스입니다. jquery로 window의 width, height값을 구해도 되고 위 소스처럼 자바스크립트로 구하셔도됩니다
'World Wide Web > javascript' 카테고리의 다른 글
디바이스 세로/가로 모드 체크 (0) | 2017.02.02 |
---|---|
youtube iframe API (0) | 2015.07.03 |
이전 페이지의 주소 받기 (0) | 2014.11.19 |
브라우저 체크 (0) | 2014.01.17 |
팝업창에서 부모창 옆에 새창 띄우기 (0) | 2013.11.12 |