GDPR Cookie Law JavaScript GDPR Consent Plugin Example

GDPR Cookie Law – JavaScript GDPR Cookie Consent Plugin example – Size: content width

For the best user experience on the demo site, the cookies are automatically deleted. This way you can always see the notification toolbar.
Size: content width
Example code
<link rel="stylesheet" href="http://your-domain.com/gdpr-cookie-law/css/gdpr-cookie-law.min.css">
<script src="http://your-domain.com/gdpr-cookie-law/js/gdpr-cookie-law.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function () {
    var gdprCookieLaw = new GDPRCookieLaw({
        moreLinkHref: 'http://your-domain.com/privacy-policy',
        width: '767px',
        position: 'bottom-center'
    });
    gdprCookieLaw.init();
});
</script>
Related options
Peoprty Possible Values Default Value Description
moreLinkHref URL e.g. 'http://your-domain.com/privacy-policy' null The href attribute of the 'More information' link.
width e.g. null, 'auto', '400px', '500px', etc. 'auto' The width of the pop-up. It is recommended to use it when top-left | top-right | bottom-left | bottom-right position is specified.