Skip to content

Instantly share code, notes, and snippets.

@davidlonjon
Last active December 21, 2015 10:29
Show Gist options
  • Save davidlonjon/6292051 to your computer and use it in GitHub Desktop.
Save davidlonjon/6292051 to your computer and use it in GitHub Desktop.
JavaScript: Get Cookie
getCookie = function(cookieName) {
var r = document.cookie.match("\\b" + cookieName + "=([^;]*)\\b");
return r ? r[1] : undefined;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment