Показать сообщение отдельно
  #1 (permalink)  
Старый 25.08.2016, 19:17
Новичок на форуме
Отправить личное сообщение для webkirpich Посмотреть профиль Найти все сообщения от webkirpich
 
Регистрация: 24.08.2016
Сообщений: 5

Скрипт не записывает куки
Привет друзья, есть проблема не могу понять почему не работает cookie?
<script type="text/javascript">
  $(document).ready(function () { 
   if (document.cookie.indexOf("ModalShown=true")<0) {	
setTimeout(function() {
function posMouse(e){
 var mouX = 0, mouY = 0;
 if (!e) e = window.event;
 if (e.pageX || e.pageY) {
  mouX = e.pageX;
  mouY = e.pageY;
 } else if (e.clientX || e.clientY) {
  mouX = e.clientX + (document.documentElement.scrollLeft || document.body.scrollLeft) - document.documentElement.clientLeft;
  mouY = e.clientY + (document.documentElement.scrollTop || document.body.scrollTop) - document.documentElement.clientTop;
 }
 return {"x":mouX, "y":mouY}
}

$(document).ready(function(){
 $('#exitposition').mouseover(function(){
	 
$("#ExitModal").modal("show"); 
        $("#myModalClose").click(function () {
            $("#ExitModal").modal("hide");
        }); 
 });
});
}, 10000);
expireDate = new Date
    expireDate.setDate(expireDate.getDate()+30)
    document.cookie = "ModalShown=true; expires=" + expireDate.toGMTString();" path=/";
    }
  });
</script>
Ответить с цитированием