Skip to content

Instantly share code, notes, and snippets.

@zexeder
Created July 2, 2015 14:42
Show Gist options
  • Save zexeder/3459415a497216f94915 to your computer and use it in GitHub Desktop.
Save zexeder/3459415a497216f94915 to your computer and use it in GitHub Desktop.
set jQuery cookies on 30 minutes
var date = new Date();
var minutes = 30;
date.setTime(date.getTime() + (minutes * 60 * 1000));
$.cookie("example", "foo", { expires: date });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment