Skip to content

Instantly share code, notes, and snippets.

@pombadev
Created March 10, 2017 06:42
Show Gist options
  • Save pombadev/ef585d127ef3ac12262fd09b7c5f5760 to your computer and use it in GitHub Desktop.
Save pombadev/ef585d127ef3ac12262fd09b7c5f5760 to your computer and use it in GitHub Desktop.
List out cookies
function ListCookies() {
var o = {};
var c = document.cookie.split(' ')
for (var i=0; i<c.length; i++) {
o[c[i].split('=')[0]] = c[i].split('=')[1];
}
return o
}
console.log(ListCookies())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment