오늘하루 보지 않음 팝업창 구현
본문
오늘하루 보지 않음 이라는 팝업을 진행해보았습니다.
<div class="fixed_banner">
<span class="fixed_banner_close">X</span>
<a href="javascript:;" class="close_time"><strong>X</strong>오늘하루 보지 않음</a>
<img src="" alt="">
</div>
<script>
$(document).ready(function () {
$(".fixed_banner .close_time").click(function () {
setCookieMobile( "todayCookie", "done" , 1);
$(".fixed_banner").hide();
});
});
function setCookieMobile ( name, value, expiredays ) {
var todayDate = new Date();
todayDate.setDate( todayDate.getDate() + expiredays );
document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";"
}
function getCookieMobile () {
var cookiedata = document.cookie;
if ( cookiedata.indexOf("todayCookier=done") < 0 ){
$(".fixed_banner").show();
}
else {
$(".fixed_banner").hide();
}
}
getCookieMobile();
</script>
이렇게 구현을 했는데, 닫아지긴 하는데 새로고침하거나 다른페이지 가면 다시 나오더라구요...
소스상의 문제일지 고수님들의 답변 부탁드립니다.