* jquery.cookie.js
https://github.com/carhartl/jquery-cookie
* request.html
<script src="jquery.js"></script>
<script src="jquery.cookie.js"></script>
<script>
$(function() {
$.removeCookie('popup', {path:'/'}); // 쿠키삭제 경우
if($.cookie("popup") == "ok") {
// 쿠키가 있을때 처리내용
} else {
window.open('popup.html');
}
});
</script>
* popup.html
<script src="jquery.js"></script>
<script src="jquery.cookie.js"></script>
<script>
$(document).ready(function() {
$("#popup").click(function() {
if($("#popup").is(":checked") == true) {
$.cookie('popup','ok',{expires:1,path:'/',domain:'www.test.com',secure:false}); // 브라우저에 따라 안될경우 domain과 secure 부분 삭제
}
});
});
</script>
하루동안 창 열지않기 <input type="checkbox" id="popup" />
'javascript, jquery' 카테고리의 다른 글
팝업창 크기에 맞게 이미지 리사이즈 (0) | 2014.10.12 |
---|---|
체크박스 전체선택 / 해제 (0) | 2014.10.11 |
팝업 레이어 설정하기 (0) | 2014.10.11 |
팝업창 자동 리사이즈(크로스 브라우징) (0) | 2014.10.11 |
이미지 변경하기 (0) | 2014.10.10 |