jQuery EU Cookie Law popups

An easy-to-install jQuery plugin to create EU Cookie Law popups.

Supports multiple layouts out of the box. Works well with Bootstrap 3. Easy to customize markup and CSS.

This is a demo page; the newest live demo will always be here.
For the code, install instructions and to see how amazingly free it is, go to Github.
Also, you might find other interesting things on my blog at wimagguc.com.

Get started

To get started, first include jQuery and import the plugin's files:
<script src="js/jquery-2.1.3.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/jquery-eu-cookie-law-popup.css"/>
<script src="js/jquery-eu-cookie-law-popup.js"></script>
(Mind you, you need to run the code on a webserver to be able to set cookies.)

Simple popup

In its simplest form, you can add an EU Cookie Law popup by simply adding the "eupopup" classes to any HTML tag.
<body class="eupopup eupopup-top">
You can also choose from these layouts:


And these colours or styles:

Custom HTML

To use a custom HTML markup, you can either add it as a Javascript parameter (read about it later), or by adding a DIV with the classname "eupopup-markup".
<div class="eupopup eupopup-container eupopup-container-block">
  <div class="eupopup-markup">
    <div class="eupopup-head">This website is using cookies</div>
    <div class="eupopup-body">We use cookies to ensure that we give you the best experience on our website. If you continue using the site, we\'ll assume that you are happy to receive all cookies on this website.</div>
    <div class="eupopup-buttons">
      <a href="#" class="eupopup-button eupopup-button_1">Continue</a>
      <a href="http://www.wimagguc.com/?cookie-policy" target="_blank" class="eupopup-button eupopup-button_2">Learn more</a>
    </div>
    <div class="clearfix"></div>
    <a href="#" class="eupopup-closebutton">x</a>
  </div>
</div>

Parameters

The script takes quite a few parameters. The suggested method to override these is from the init method (find the out-of-the-box one in the jquery-eu-cookie-law-popup.js):
$(document).euCookieLawPopup().init({
  cookiePolicyUrl : 'http://www.wimagguc.com/?cookie-policy',
  popupPosition : 'top',
  colorStyle : 'default',
  compactStyle : false,
  popupTitle : 'This website is using cookies',
  popupText : 'We use cookies to ensure that we give you the best experience on our website. If you continue without changing your settings, we\'ll assume that you are happy to receive all cookies on this website.',
  buttonContinueTitle : 'Continue',
  buttonLearnmoreTitle : 'Learn more',
  buttonLearnmoreOpenInNewWindow : true,
  agreementExpiresInDays : 30,
  autoAcceptCookiePolicy : false,
  htmlMarkup : null
});

Events

If you need to be notified about the consent somewhere in your code (for example, to enable the cookies in other parts of your software), you can listen to the 'user_cookie_consent_changed' event.
$(document).bind("user_cookie_consent_changed", function(event, object) {
  // true or false
  console.log("User consent: " + $(object).attr('consent') );
});

As seen on

Bunt Creative, Divespy, Appwoodoo
...and perhaps many more in the EU :)

Created By

Richard Dancsi

Blog: www.wimagguc.com
Twitter: twitter.com/wimagguc
Github: github.com/wimagguc

MIT, do-with-the-code-whatever-you-please License