Skip to content

Instantly share code, notes, and snippets.

@mehdichaouch
Last active July 26, 2016 09:11
Show Gist options
  • Save mehdichaouch/e4e14b09b0189e899edb18b87e0cbd7d to your computer and use it in GitHub Desktop.
Save mehdichaouch/e4e14b09b0189e899edb18b87e0cbd7d to your computer and use it in GitHub Desktop.
JavaScript to list cookies
function listCookies() {
var theCookies = document.cookie.split(';');
var aString = '';
for (var i = 1 ; i <= theCookies.length; i++) {
aString += i + ' ' + theCookies[i-1] + "\n";
}
return aString;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment