Skip to content

Instantly share code, notes, and snippets.

@sagar-gavhane
Created June 20, 2018 06:24
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 sagar-gavhane/c2b309ad1fd02a1dc17f759365a0ffe2 to your computer and use it in GitHub Desktop.
Save sagar-gavhane/c2b309ad1fd02a1dc17f759365a0ffe2 to your computer and use it in GitHub Desktop.
Remove all cookies from browser - Important set path
removeCookie(){
var cookies = document.cookie.split(";");
for (var i = 0; i < cookies.length; i++) {
var cookie = cookies[i];
var eqPos = cookie.indexOf("=");
var name = eqPos > -1 ? cookie.substr(0, eqPos) : cookie;
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT"+";path=/";
}
}
removeCookie();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment