엄마 백원만

nezah.egloos.com

포토로그 마이가든



Chrome popup block 여부 확인 밥벌이

보통 팝업 차단여부는

var win = window.open();
if(win == null){
   ...
}

식으로 win 객체가 널일 경우 오류메세지를 띄워주는 식으로 했는데
구글 크롬은 null 이 아닌 상태로 블럭이 된다

간단하게는 win.outerWidth == 0  로 확인가능
블럭된 경우에는 위의 값이 0 으로 된다

기타 경우도 고려한 자세한 블럭여부 판단은 아래 소스에서
http://stackoverflow.com/questions/668286/detect-blocked-popup-in-chrome


1 2 3 4 5 6 7 8 9 10 다음




var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-5929933-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();