* main.html

<script>
	window.open('popup.html', '_blank', 'width=100, height=100');
</script>

* popup.html 

$(document).ready(function () {
	window.moveTo(0, 0);
    
	var w = $(document).width();
	var h = $(document).height();
	window.resizeTo(w, h);
 
	var mw = window.outerWidth - window.innerWidth;
	var mh = window.outerHeight - window.innerHeight;
	window.resizeBy(mw, mh);
 
	if (isIEVer() < 9) {            
		mw = $(document).outerWidth() - $(window).width();
		mh = $(document).outerHeight() - $(window).height();               
		window.resizeBy(mw, mh);
	}
});

'javascript, jquery' 카테고리의 다른 글

$.cookie / $.removeCookie - 쿠키 제어하기  (0) 2014.10.11
팝업 레이어 설정하기  (0) 2014.10.11
이미지 변경하기  (0) 2014.10.10
ajax - ajaxStart, ajaxStop  (0) 2014.10.08
jquery - ajax  (0) 2014.10.07
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,