팝업 차단 여부 확인 스크립트
로빈아빠
본문
<html>
<head>
<script type="text/javascript">
var objPopup = window.open("http://www.google.co.kr", "", "width=200,height=200");
if (objPopup == null) {
alert("차단된 팝업창을 허용해 주십시오.");
}
else {
alert("팝업창이 이상없이 오픈되었습니다.");
}
</script>
</head>
<body>
</body>
</html>
<head>
<script type="text/javascript">
var objPopup = window.open("http://www.google.co.kr", "", "width=200,height=200");
if (objPopup == null) {
alert("차단된 팝업창을 허용해 주십시오.");
}
else {
alert("팝업창이 이상없이 오픈되었습니다.");
}
</script>
</head>
<body>
</body>
</html>
관련링크
- http://raintype.tistory.com/158 1216회 연결
댓글목록
등록된 댓글이 없습니다.