Back to Scripts page
Click in the text area below, select all and copy to grab the script
Script listing:
<HTML> <HEAD> <TITLE>Delete those cookies</TITLE> </HEAD> <BODY BGCOLOR=WHITE> <SCRIPT LANGUAGE=JAVASCRIPT TYPE="TEXT/JAVASCRIPT"> <!-- Hide script from older browsers if (document.cookie != "") { if (confirm("Do you want to delete the cookies?")) { thisCookie = document.cookie.split("; ") expireDate = new Date expireDate.setDate(expireDate.getDate()-1) for (i=0; i<thisCookie.length; i++) { cookieName = thisCookie[i].split("=")[0] document.cookie = cookieName + "=;expires=" + expireDate.toGMTString() } document.write("<H1>Number of cookies deleted: " + thisCookie.length + "<\/H1>") } } // End hiding script --> </SCRIPT> </BODY> </HTML>