Skip to content

Instantly share code, notes, and snippets.

@jonathanfranks
Created September 1, 2015 21:51
Show Gist options
  • Save jonathanfranks/a64fa4cd10356878a2c6 to your computer and use it in GitHub Desktop.
Save jonathanfranks/a64fa4cd10356878a2c6 to your computer and use it in GitHub Desktop.
Delete Cookie by Name (JS)
var delete_cookie = function(name) {
document.cookie = name + '=;expires=Thu, 01 Jan 1970 00:00:01 GMT;';
};
delete_cookie('roundcube_sessauth');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment