View Single Post
  #2 (permalink)  
Old 05-31-2008
ray_diator ray_diator is offline
Peon
 
Join Date: Apr 2008
Posts: 11
Default

To check for the existence of a cookie all you need is this:-

if (! document.cookie)
{ do something; }
else
{ do something else; }
Reply With Quote