জাভাস্ক্রিপ্ট দিয়ে সমস্ত কুকি সাফ করতে, মেয়াদ শেষ হওয়ার তারিখটি অতীতের একটি সময়ে সেট করুন৷
উদাহরণ
আপনি সমস্ত কুকিজ সাফ করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন −
৷<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>