How to get cookie expiration date / creation date from javascript?

Viewed 133048

Is it possible to retrieve the creation or expiration date of an existing cookie from javascript? If so how?

7 Answers

you can't get the expiration date of a cookie through javascript because when you try to read the cookie from javascript the document.cookie return just the name and the value of the cookie as pairs

Related