Skip to content

Instantly share code, notes, and snippets.

@donbrae
Created August 18, 2020 11:54
Show Gist options
  • Save donbrae/18c348cd04176e3e1522ad30e7c128cc to your computer and use it in GitHub Desktop.
Save donbrae/18c348cd04176e3e1522ad30e7c128cc to your computer and use it in GitHub Desktop.
Get list of currently set cookies
(function () {
let cookies = [];
document.cookie.split(';').forEach(cookie => {
cookies.push(cookie.split('=')[0]);
});
console.log(cookies.join(','));
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment