Skip to content

Instantly share code, notes, and snippets.

@travhimself
Created March 9, 2018 23:18
Show Gist options
  • Select an option

  • Save travhimself/ce6d4a2acf00adbfa674f3a257c250ac to your computer and use it in GitHub Desktop.

Select an option

Save travhimself/ce6d4a2acf00adbfa674f3a257c250ac to your computer and use it in GitHub Desktop.
get value of cookie entry by name
function getCookieVal(name) {
let cookies = document.cookie.split('; ');
for (let i = 0; i < cookies.length; i++) {
let parts = cookies[i].split(/=(.+)/);
if (parts[0] === name) {
return parts[1];
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment