How to set a cookie named 'test' and value '1'?
And especially, how to unset?
|
|
|
See the plugin: https://github.com/carhartl/jquery-cookie You can then do:
To delete:
Additionally, to set a timeout of a certain number of days (10 here) on the cookie:
If the expires option is omitted, then the cookie becomes a session cookie, and is deleted when the browser exits. To cover all the options:
To read back the value of the cookie:
You may wish to specify the path parameter if the cookie was created on a different path to the current one:
|
|||||||||||||||
|
|
No need to use jQuery particularly to manipulate cookies. From QuirksMode (including escaping characters)
Take a look at |
|||||||||||||||||
|
|
You need to use a plugin available here.. http://plugins.jquery.com/project/cookie and then to write a cookie do
to access the set cookie do
Raj |
|||
|
|
|
I agree with Kazar that https://github.com/carhartl/jquery-cookie is a great plugin for dealing with cookies. However, in my case To remove a cookie, use |
|||||
|
|
To whom it may concern it's not an issue with that plugin but cookies in general I noticed my cookies were being created domain specific (the default) and the browser sees EDIT Had problems with the above running in dev environment on localhost and also serverside not clearing cookies so opted to rather have an IIS redirect so that there is only one way to access the site. |
||||
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.