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 }); >
$.cookie(\"example\", \"foo\", { expires: 1 });
30 minutes is 30 * 60 * 1000 miliseconds. Add that to the current date to specify an expiration date 30 minutes in the future.
30 * 60 * 1000
var date = new Date(); var minutes = 30; date.setTime(date.getTime() + (minutes * 60 * 1000)); $.cookie("example", "foo", { expires: date });