Skip to content

Instantly share code, notes, and snippets.

@codingfox-rus
Last active August 29, 2015 14:11
Show Gist options
  • Save codingfox-rus/8331632aca6f2f149f9e to your computer and use it in GitHub Desktop.
Save codingfox-rus/8331632aca6f2f149f9e to your computer and use it in GitHub Desktop.
Получение куки по имени (JS)
function getCookie(name) {
var matches = document.cookie.match(new RegExp(
"(?:^|; )" + name.replace(/([\.$?*|{}\(\)\[\]\\\/\+^])/g, '\\$1') + "=([^;]*)"
));
return matches ? decodeURIComponent(matches[1]) : undefined;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment