I think knowing the answer to this would help me conceptualize the relationship between the cookies stored by the browser and the document.cookie made available via the DOM.
I think knowing the answer to this would help me conceptualize the relationship between the cookies stored by the browser and the document.cookie made available via the DOM.
Share Improve this question asked Jul 2, 2011 at 21:40 zjmillerzjmiller 2,8076 gold badges31 silver badges30 bronze badges3 Answers
Reset to default 10Setting document.cookie
is specified by the DOM 2 HTML specification. Setting it to an empty string should result in an error according to that specification.
It's a badly designed interface. The relationship is a fucked up one. You don't have to visualise it, you just have to put up with it.
document.cookie
doesn't really behave normally. Browsers treat calls to reading and writing document.cookie
different from most calls to object properties.
Setting document.cookie
doesn't set the entire cookie string. Instead, it adds cookies. For example:
alert(document.cookie); // The existing cookie string is "foo=bar; spam=eggs"
document.cookie = "hello=world; lol=cats";
alert(document.cookie); // The cookie string might now say "foo=bar; spam=eggs; hello=world; lol=cats"
Though the order of the cookies may vary, the snippet still illustrates the point. Setting document.cookie
sets the cookies specified, but doesn't remove a cookie just because it's not mentioned in the new string. It'd be too easy to make mistakes.
Of course, I'm not totally sure why the API was built this way. I suspect things might be different if we were writing the cookie API today, and would actually have read, write, delete, etc., functions. However, this is what we've got.
As already mentioned, document.cookie is not a normal string. When you read it, you get all cookies. When you set it, you set one new cookie. Thus, you cannot clear all cookies this way.
If you want to clear all cookies, there are a number of other SO questions on the same topic. This one seems pretty clear: Clearing all cookies with JavaScript. You can find a zillion other remendations with a Google search for how do you remove all cookies for a site with javascript.