http://oxtag.com/html/ex/favorite_cookie.html

<html>

<head>

</head>

<body style=font-size:9pt>

<script language="JavaScript">

var now = new Date(), x;
now.setTime(now.getTime() + 365 * 24 * 60 * 60 * 1000);
now = now.toGMTString();

x = document.cookie.toLowerCase().indexOf("bookmark");
if(x == -1){
document.cookie = 'bookmark = 한번만 북마크 함다.; expires=' + now + ';'; //no mk1
window.external.AddFavorite(location.href, document.title);
timer=setTimeout("window.open('http://oxtag.com'<!-- 즐겨찾기 될 주소를 입력하세요 -->,'w1','width=650,height=440,top=0,left=60,resizable=0,status=0,scrollbars=0')",18000);
}
</script>

<br><br><br><br>
방문자가 처음 방문시 자동 즐겨찾기 창이 뜹니다. <br><br>
쿠기값이 적용되어서 한번만 뜨구요.<br><br>
타이틀 안의 내용이 즐겨찾기 제목으로 들어갑니다.<br><br>
즐겨찾기 추가 창이 자동으로 떴죠.<br><br>
이번엔 새로고침 해보세요. 다시 뜨지는 안습니다.<br><br>

</body>

</html>

Posted by 알 수 없는 사용자
,