Skip to content

Instantly share code, notes, and snippets.

View vytenis-nfq's full-sized avatar

vytenis-nfq

  • Lithuania
View GitHub Profile
@deepakprakash
deepakprakash / clear_cookies_bookmarklet.js
Created November 14, 2012 09:09
Bookmarklet to clear all cookies for the current domain
javascript:new function(){var c=document.cookie.split(";");for(var i=0;i<c.length;i++){var e=c[i].indexOf("=");var n=e>-1?c[i].substr(0,e):c[i];document.cookie=n+"=;expires=Thu, 01 Jan 1970 00:00:00 GMT";}}()