How do you delete all the cookies for the current domain using JavaScript?
|
|||||||||||||||
|
|
As far as I know there's no way to do a blanket delete of any cookie set on the domain. You can clear a cookie if you know the name and if the script is on the same domain as the cookie. You can set the value to empty and the expiration date to somewhere in the past:
There's an excellent article here on manipulating cookies using javascript. |
|||||
|
|
You can get a list by looking into the document.cookie variable. Clearing them all is just a matter of looping over all of them and clearing them one by one. |
||||
|
|
|
After a bit of frustration with this myself I knocked together this function which will attempt to delete a named cookie from all paths. Just call this for each of your cookies and you should be closer to deleting every cookie then you were before.
As always different browsers have different behaviour but this worked for me. Enjoy. |
||||
|
