Skip to content

Instantly share code, notes, and snippets.

@bbrochier
Last active January 22, 2016 10:55
Show Gist options
  • Save bbrochier/71c20c95c2a12cfd0fa8 to your computer and use it in GitHub Desktop.
Save bbrochier/71c20c95c2a12cfd0fa8 to your computer and use it in GitHub Desktop.
/* ==========================================================================
COOKIES BANNER
========================================================================== */
var cookiesStatus = localStorage.getItem('cookiesStatus');
if (cookiesStatus === null) {
$('.cookiesBanner').slideUp();
}
$('.cookiesBanner').on('click', '.btnClose', function() {
$('.cookiesBanner').slideDown();
localStorage.setItem('cookiesStatus', 'ok');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment