Skip to content

Instantly share code, notes, and snippets.

@dkarchmer
Created August 31, 2016 00:22
Show Gist options
  • Save dkarchmer/4d988ae21d03e07c8883556631f124f6 to your computer and use it in GitHub Desktop.
Save dkarchmer/4d988ae21d03e07c8883556631f124f6 to your computer and use it in GitHub Desktop.
var getCookie = function (cname) { // eslint-disable-line no-unused-vars
var name = cname + '=';
var ca = document.cookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) === ' ') { c = c.substring(1); }
if (c.indexOf(name) === 0) { return c.substring(name.length, c.length); }
}
return '';
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment