A simple, lightweight jQuery plugin for reading, writing and deleting cookies.

learn more… | top users | synonyms

11
votes
3answers
33k views

Create a cookie if (and only if) it doesn't already exist

I want to: Check to see if a cookie with name of "query" exists If yes, then do nothing If no, create a cookie "query" with a value of 1 Note: I am using jQuery 1.4.2 and the jQuery cookie plugin. ...
1
vote
2answers
1k views

Javascript: Change CSS File Dynamically + Cookie

I want to change the used CSS File (<link href="..." />) dynamically using only javascript and to save changes in cookies. This is a jQuery version that does what I want (ref), but how can I do ...
4
votes
2answers
3k views

Is using the jQuery Cookie plugin a valid way of testing to see if cookies are enabled?

I have a site that we require the user to have enabled JavaScript and cookies before they can login to the site. (The JS part is done and works perfectly.) At the moment, we have been been setting a ...
2
votes
1answer
619 views

Using Bootstrap, have alert box remember close action

I am trying to create a Bootstrap alert box that remembers when users click the close button. I guess I need to store that information in a cookie. Ideally that cookie will only last for that current ...
2
votes
2answers
653 views

Create a cookie based on select menu option?

I'm trying to create a select menu in a way that when users select an option and click on the continue button, a cookie is created with the contents of the option. The code directly below works, but ...
1
vote
2answers
160 views

PHP sets COOKIE, changed with JQUERY COOKIE plugin, cannot be edited with php?

i'm using some simple code as a test as my page isn't working, maybe i'm missing something?! I have google for this problem and searched here but no one seems to have mentioned it! even on cookie tuts ...
1
vote
1answer
1k views

jstree - node selection based on current navigated url

Today I'm using the built-in cookies of the jsTree in order to preserve user navigations in the tree. on node click in the tree the user is redirected to the corresponding page in my site and the ...
1
vote
2answers
2k views

jQuery Cookie Not Working in IE 8?

EDIT: I was having an issue with the cookie below so I switched to jQuery Cookie and still the error persist so I posted the jQuery Cookie code here but left my original question intact: On one page ...
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 ...
0
votes
0answers
103 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 ...
0
votes
1answer
198 views

Cookie adding another entry instead of replacing existing value

I am using the popular jquery cookie plugin to set a session cookie value via javascript like so: function ChangeLoginUser(sel) { var selectedUser = sel.options[sel.selectedIndex].value; ...