1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<!-- 마크업 -->
<div id="popup-cookie">
<img src="/images/user/popup.jpg"/>
<div>
<ul class="clfix">
<li><a href="javascript:;" onclick="todaycloseWin();" alt="오늘 하루 열지 않기">오늘 하루 열지 않기</a></li>
<li><a href="javascript:;" onclick="closeWin();" alt="닫기">닫기</a></li>
</ul>
</div>
</div>
<!-- 스크립트 -->
<script language="Javascript">
$( document ).ready(function() {
cookiedata = document.cookie;
if ( cookiedata.indexOf("ncookie=done") < 0 ){
document.getElementById('popup-cookie').style.display = "block";
$("#wrap").prepend('<div id="dimm-cookie" onclick="dimm_close();" class="black" />');
} else {
document.getElementById('popup-cookie').style.display = "none";
}
});
function setCookie( name, value, expiredays ) {
var todayDate = new Date();
todayDate.setDate( todayDate.getDate() + expiredays );
document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";"
}
function closeWin() {
document.getElementById('popup-cookie').style.display = "none";
$("#dimm-cookie").remove();
}
function todaycloseWin() {
setCookie("ncookie", "done", 1);
document.getElementById('popup-cookie').style.display = "none";
$("#dimm-cookie").remove();
}
function dimm_close() {
$("#dimm-cookie").remove();
document.getElementById('popup-cookie').style.display = "none";
}
</script>
|
'퍼블리싱 > JS & JQ' 카테고리의 다른 글
Datepicker 년월만 선택하기 (0) | 2019.04.05 |
---|---|
animateNumber 사용시 소수점 사용 방법 (0) | 2019.04.03 |
"onclick"으로 "this"를 인식하는 방법 (0) | 2019.03.27 |
특정영역만 프린트 하기 (0) | 2019.02.22 |
.ready() vs .load() (0) | 2019.01.29 |