How to expire a cookie in 30 minutes using jQuery?

bluwater2001 picture bluwater2001 · Dec 2, 2009 · Viewed 134.7k times · Source

How to Expire a Cookie in 30 min ? I am using a jQuery cookie. I am able to do something like this.

$.cookie("example", "foo", { expires: 1 });

This is for 1 day. But how can we set expiry time to 30 min.

Answer

Sinan Ünür picture Sinan Ünür · Dec 2, 2009

30 minutes is 30 * 60 * 1000 miliseconds. Add that to the current date to specify an expiration date 30 minutes in the future.

 var date = new Date();
 var minutes = 30;
 date.setTime(date.getTime() + (minutes * 60 * 1000));
 $.cookie("example", "foo", { expires: date });