Skip to content

Instantly share code, notes, and snippets.

@z2015
Created May 20, 2016 02:22
Show Gist options
  • Select an option

  • Save z2015/478ce414e053208a7b36c0c5511a4ffd to your computer and use it in GitHub Desktop.

Select an option

Save z2015/478ce414e053208a7b36c0c5511a4ffd to your computer and use it in GitHub Desktop.
Delete Cookie
document.cookie.split(";").forEach(function(c) { document.cookie = c.replace(/^ +/, "").replace(/=.*/, "=;expires=" + new Date().toUTCString() + ";path=/"); });
javascript:(function(){document.cookie.split(";").forEach(function(c) { document.cookie = c.replace(/^ +/, "").replace(/=.*/, "=;expires=" + new Date().toUTCString() + ";path=/"); }); })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment