Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to set a cookie named 'test' and value '1'?

And especially, how to unset?

share|improve this question

5 Answers

up vote 277 down vote accepted
+50

See the plugin:

https://github.com/carhartl/jquery-cookie

You can then do:

$.cookie("test", 1);

To delete:

$.removeCookie("test");

Additionally, to set a timeout of a certain number of days (10 here) on the cookie:

$.cookie("test", 1, { expires : 10 });

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:

$.cookie("test", 1, {
   expires : 10,           //expires in 10 days

   path    : '/',          //The value of the path attribute of the cookie 
                           //(default: path of page that created the cookie).

   domain  : 'jquery.com',  //The value of the domain attribute of the cookie
                           //(default: domain of page that created the cookie).

   secure  : true          //If set to true the secure attribute of the cookie
                           //will be set and the cookie transmission will
                           //require a secure protocol (defaults to false).
});

To read back the value of the cookie:

var cookieValue = $.cookie("test");

You may wish to specify the path parameter if the cookie was created on a different path to the current one:

var cookieValue = $.cookie("test", { path: '/foo' });
share|improve this answer
How to unset a cookie? – omg Sep 22 '09 at 9:57
I've added it to answer – Kazar Sep 22 '09 at 13:26
1  
is a , missing after the domain line near the end? – 動靜能量 Mar 9 '11 at 3:00
Yes, it was, good catch. Corrected. – Kazar Mar 9 '11 at 12:01
1  
Thanks @bogdan, change made. – Kazar Jan 7 at 10:09
show 3 more comments

No need to use jQuery particularly to manipulate cookies.

From QuirksMode (including escaping characters)

function createCookie(name, value, days) {
    if (days) {
        var date = new Date();
        date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
        var expires = "; expires=" + date.toGMTString();
    } else var expires = "";
    document.cookie = escape(name) + "=" + escape(value) + expires + "; path=/";
}

function readCookie(name) {
    var nameEQ = escape(name) + "=";
    var ca = document.cookie.split(';');
    for (var i = 0; i < ca.length; i++) {
        var c = ca[i];
        while (c.charAt(0) == ' ') c = c.substring(1, c.length);
        if (c.indexOf(nameEQ) == 0) return unescape(c.substring(nameEQ.length, c.length));
    }
    return null;
}

function eraseCookie(name) {
    createCookie(name, "", -1);
}

Take a look at

share|improve this answer
5  
Thanx for the non plugin solution, even though it doesn't use JQuery as specified in the question! :) – Jrgns Dec 9 '10 at 14:14
Hi Russ, the good thing about jquery cookie is that it escapes the data – lordspace Jan 18 '11 at 14:49
@lord welcome to SO, but please read the faq. – Will Jan 18 '11 at 14:49
2  
@lordspace - Just wrap the value in window.escape/unescape to write/retrieve the cookie value, respectively :) – Russ Cam Jan 18 '11 at 18:03
9  
Better cookie code can be found here: developer.mozilla.org/en/DOM/document.cookie – SDC Jul 11 '12 at 14:03
show 1 more comment

You need to use a plugin available here..

http://plugins.jquery.com/project/cookie

and then to write a cookie do $.cookie("test", 1);

to access the set cookie do $.cookie("test");

Raj

share|improve this answer

I agree with Kazar that https://github.com/carhartl/jquery-cookie is a great plugin for dealing with cookies.

However, in my case $.cookie("test", null); does not work to remove a cookie for me (it does set the value to "null").

To remove a cookie, use $.removeCookie("test");

share|improve this answer
3  
Just curious, why the down vote? – Amiel Martin Jan 26 at 1:15

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 www.domain.com and domain.com as two seperate domains it was neccesary for me to add the option doman: '.domain.com' in the create statement for the cookie then it created a cookie for that domain and all subdomains.

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.

share|improve this answer
Your answer is not really an answer to the original question, rather a comment to an existing one. That's why you should put your advice as a comment on the respective answer. – Oliver May 14 at 16:10

protected by Will Jan 18 '11 at 14:49

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.