Javascript delete cookie next day -


I was surprised if you can delete a cookie at the beginning of the next day

Let's say That I log in to the website at 1:30 pm and use it again all day, but after midnight or 1 minute ago, in the new day, the cookie is removed.

> Many thanks for any help, C

Yes - midnight Set the end time of:

  function midnight_cookie (name, value, path) {var now = new date (); Var expire = new date (); Expire.setFullYear (now.getFullYear ()); Expire.setMonth (now.getMonth ()); Expire.setDate (now.getDate () + 1); Expire.setHours (0); Expire.setMinutes (0); Document.cookie = name + "=" + value + "; ends =" + expire.toString () + "; path =" + path; }  

Comments