Reading cookie expiration date

cookies, html, javascript, xhtml

Solution

It is not possible to get the expiration date of a cookie through Javascript; only key-value pairs are exposed through `document.cookie`.

Problem

Is it possible to read cookie expiration date using JavaScript? If yes, how? If not, is there a source I can look at?

Original source

Related problems