How to clear cookies with out keeping any expiry time.
i have created a cookie like this
document.cookie = "visited=yes";
i need to remove this cookie.
How can i do that..?
Thanks in advance
How to clear cookies with out keeping any expiry time.
i have created a cookie like this
document.cookie = "visited=yes";
i need to remove this cookie.
How can i do that..?
Thanks in advance
Usually you would just update your cookies expiry time to delete it.
document.cookie = "expires=Thu, 01 Jan 1970 00:00:00 GMT";
You can also write an empty cookie to reset it's values:
document.cookie = "key=";