0
votes
1answer
116 views

Using Intro.js and jquery.cookie to show intro only on first view of each url

I am using intro.js functionality across 3 different urls. I have limited it to show to users only the first time they load a page with: unless $.cookie("firstview")? introJs().start() $.cookie ...
0
votes
2answers
122 views

Fullcalendar with $.cookie not working

I have been trying to figure this out, and since I can't find any solution, I created a jsfiddle so someone might be able to help me. I have fullcalendar with the jquery cookie plugin integrated, so ...
0
votes
0answers
117 views

storing special characters in cookies using jquery plugin

I want to store the cookies using jquery plugin(jquery.cookie.js). The cookies has some special characters. while storing the cookies in the browser the special character are converted to codes ...
1
vote
1answer
296 views

Problem with canceling a jquery animation with a cookie

I'd like to make a jquery animation run only once per session with a cookie. I've sort of figured out how to do this with Klaus Hartl’s cookie plugin, but, when the page is called the second time, the ...
7
votes
2answers
3k views

JQuery cookie extension will set a cookie with a path but will not read it

First, set a cookie: jQuery.cookie('monster', 'big', { path : '/sesame/'}); Next, try to read it: jQuery.cookie('monster'); Firefox tells me that the cookie has indeed been set. The value is big ...