Skip to content

Instantly share code, notes, and snippets.

@golgote
Created September 9, 2014 12:17
Show Gist options
  • Save golgote/d8c087a6ac150f124767 to your computer and use it in GitHub Desktop.
Save golgote/d8c087a6ac150f124767 to your computer and use it in GitHub Desktop.
Fast function to read cookies in javascript browser
function readcookie(a, b, c) {
b = '; ' + document.cookie;
c = b.split('; ' + a + '=');
return !!(c.length - 1) ? c.pop().split(';').shift() : '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment