JavaScript के साथ सभी कुकीज को साफ करने के लिए, समाप्ति तिथि को पहले के समय पर सेट करें।
उदाहरण
आप सभी कुकीज़ को साफ़ करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं -
<html> <head> <script> <!-- function WriteCookie() { var now = new Date(); now.setMonth( now.getMonth() - 1 ); cookievalue = escape(document.myform.customer.value) + ";" document.cookie="name=" + cookievalue; document.cookie = "expires=" + now.toUTCString() + ";" document.write("Setting Cookies : " + "name=" + cookievalue ); } //--> </script> </head> <body> <form name="myform" action=""> Enter name: <input type="text" name="customer"/> <input type="button" value="Set Cookie" onclick="WriteCookie()"/> </form> </body> </html>