Skip to content

Instantly share code, notes, and snippets.

@pinkmomo027
Created May 6, 2016 17:56
Show Gist options
  • Save pinkmomo027/8c54c683cbce842e8aedcdfa5c4a3dbf to your computer and use it in GitHub Desktop.
Save pinkmomo027/8c54c683cbce842e8aedcdfa5c4a3dbf to your computer and use it in GitHub Desktop.
Extract Cookie
// http://stackoverflow.com/questions/10730362/get-cookie-by-name
function getCookie(name) {
var value = "; " + document.cookie;
var parts = value.split("; " + name + "=");
if (parts.length == 2) return parts.pop().split(";").shift();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment