Skip to content

Instantly share code, notes, and snippets.

@fakedarren
Created October 30, 2012 13:13
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 fakedarren/3980110 to your computer and use it in GitHub Desktop.
Save fakedarren/3980110 to your computer and use it in GitHub Desktop.
Kill cookie snippet
$$('#cookiePolicy button[type=submit]').addEvent('click', function(evt){
evt.preventDefault();
new Cookie.write('THE_compliance', true, {
path: '/',
duration: 90
});
$$('#cookiePolicy').destroy();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment