Что делаю не правильно?
alert( document.cookie );
$(document).ready(function () {
if(cookie.get('first_visit') == null) {
var delay_popup = 1000;
setTimeout("document.getElementById('popup').style.display='block'", delay_popup);
};
});
Почему не работает?
Консоль кричит, что кукис не найден - if(cookie.get('first_visit') == null) {
А алерт показывает что там есть этот кука.
Где ошибка?