Skip to content

Instantly share code, notes, and snippets.

@jarodium
Created September 15, 2016 08:19
Show Gist options
  • Save jarodium/d5f7871410af96b7ce4f58ebe318882d to your computer and use it in GitHub Desktop.
Save jarodium/d5f7871410af96b7ce4f58ebe318882d to your computer and use it in GitHub Desktop.
Clear all Cookies with JS
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