Skip to content

Instantly share code, notes, and snippets.

@tyriis
Last active November 8, 2018 13:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tyriis/c4be09d0c9389161c2a60c91bc8dc9e2 to your computer and use it in GitHub Desktop.
Save tyriis/c4be09d0c9389161c2a60c91bc8dc9e2 to your computer and use it in GitHub Desktop.
read cookies
var cookies = document.cookie.split(';').reduce(function(cookies, cookie) {
cookies[cookie.split("=")[0].trim()] = unescape(cookie.split("=")[1]);
return cookies
}, {})
console.log(cookies.sec_session_id)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment