Skip to content

Instantly share code, notes, and snippets.

@rashad612
Created March 5, 2015 17:28
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 rashad612/d55cb345d5baf191cc83 to your computer and use it in GitHub Desktop.
Save rashad612/d55cb345d5baf191cc83 to your computer and use it in GitHub Desktop.
javaScript: Search for cookie [ name or value ]
var search = 'search-phrase';
var matches = document.cookie.split(';').filter(function(e) { return new RegExp(search, 'gi').test(e); });
@YazanRawashdeh
Copy link

works like a charm , thanks mate

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment