Skip to content

Instantly share code, notes, and snippets.

@thierrypigot
Created May 28, 2015 08:15
Show Gist options
  • Save thierrypigot/3a44fef4abbf734be1c9 to your computer and use it in GitHub Desktop.
Save thierrypigot/3a44fef4abbf734be1c9 to your computer and use it in GitHub Desktop.
jQuery : Gestion des Cookies
// Création du cookies example ayant comme valeur foo
$.cookie("example", "foo");
// Expiration du cookies dans 7 jours
$.cookie("example", "foo", { expires: 7 });
// Limiter le cookies au dossier admin
$.cookie("example", "foo", { path: '/admin' });
// Récupérer la valeur d'un cookies
$.cookie("example");
// Detruit le cookies à la fermeture du navigateur
window.onbeforeunload = function() {
$.cookie("example", null);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment