$(function(){ $.fn.cookieconfirmD = function( options ) { var settings = { 'confirmtext' : 'This website uses cookies to ensure you get the best experience on our website.', 'buttonlabel' : 'OK', 'policylink' : '', 'background' : '#FFFFFF', 'cookiename' : 'cookiesapproved', 'cookievalue' : 'confirm' }; if ( options ) { $.extend( settings, options );} var cookiesconfirmok; cookiesconfirmok = Cookies.get(settings.cookiename); if( cookiesconfirmok != settings.cookievalue ){ var button = $('' + settings.buttonlabel + '') .css({ 'display': 'inline-block', 'box-sizing': 'border-box', 'color': 'rgb(230, 44, 44)', 'font-size': '0px', 'letter-spacing': '2px', 'cursor': 'pointer', 'position': 'relative', 'left': '50px', 'top': '8px' }); var cookietopcontent = $('
' + settings.confirmtext + settings.policylink + '
') .css({ 'display':'none', 'position':'relative', 'z-index':'1001', 'padding':'16px 30px', 'box-sizing':'border-box', 'margin':'0 auto', 'background':'#FFFFFF', 'color':'#000000', 'text-align':'center', 'font-size':'13px', 'letter-spacing':'2px', 'line-height':'150%' }) .fadeIn(200) .append(button); $('') //.appendTo('body') .prependTo('body') .css({ 'position':'fixed', 'bottom':'0px', 'z-index':1000, 'height':'auto', 'background':'#fff', 'width':'100%', 'box-shadow': '0 15px 20px black' }) .append(cookietopcontent); $('body').on('click','#cookiesconfirmbtn', function(){ var t = $(this); var tp = t.parent(); Cookies.set(settings.cookiename, settings.cookievalue, { expires: 365 }); //tp.fadeOut(1500); tp.slideUp(200); }); } } }); $(document).ready( function () { $().cookieconfirmD({ 'confirmtext' : "Tato webov\u00e1 str\u00e1nka pou\u017e\u00edv\u00e1 cookies, aby v\u00e1m umo\u017enila co nejlep\u0161\u00ed z\u00e1\u017eitek z na\u0161ich webov\u00fdch str\u00e1nek.", //'This website uses cookies to ensure you get the best experience on our website.', 'buttonlabel' : '
',//'I agree.', 'background' : '#FFFFFF' //'policylink' : ' VĂ­ce info'// }); });