Back to Scripts page
Click in the text area below, select all and copy to grab the script
Script listing:
<HTML> <HEAD> <TITLE>Cookie Check</TITLE> </HEAD> <BODY BGCOLOR=WHITE> <H2> <SCRIPT LANGUAGE=JAVASCRIPT TYPE="TEXT/JAVASCRIPT"> <!-- Hide script from older browsers if (document.cookie == "") { document.write("There are no cookies here") } else { thisCookie = document.cookie.split("; ") for (i=0; i<thisCookie.length; i++) { document.write("Cookie name is '"+thisCookie[i].split("=")[0]) document.write("', and the value is '"+thisCookie[i].split("=")[1]+"'<br>") } } // End hiding script --> </SCRIPT> </H2> </BODY> </HTML>