Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i want to include a hash in javascript cookie since i have a list of things to remember... can anyone tel how to set the cookie and the method to retrive it?

share|improve this question

1 Answer

up vote 1 down vote accepted

You can set Cookie in JavaScript like this:

document.cookie = 'somekey=somevalue; expires=Thu, 2 Aug 2011 21:17:11 UTC; path=/'

Codes to create, read & erase cookies in JavaScript ( by Quirksmode ):

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 = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
    var nameEQ = 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 c.substring(nameEQ.length,c.length);
    }
    return null;
}

function eraseCookie(name) {
    createCookie(name,"",-1);
}
share|improve this answer
i need to include more than one name-value pairs in a single cookie.. is that possible?? – Cara Mar 11 '11 at 7:07
1  
Just join and split on a delimiter. For example | – mplungjan Mar 11 '11 at 7:14
yes, mplungjan is correct. you can add as many name-value pairs as you wish using delimiter. – Shivan Raptor Mar 12 '11 at 9:32
Thank you so much both of you.. its working perfectly now... – Cara Mar 14 '11 at 6:54
hi while using the page some variables are set as cookie and I can't delete that. It also joins with my cookie. I dont know why it behaves like this. One more problem is I couldn't set expiry date b'coz of the automatically set cookie. only name value pairs I can set with my cookie. If I set expiry date my name value pair also not assigned to the cookie. can you help me? – Cara Mar 17 '11 at 5:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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