jQuery(document).ready(function() { var testo = "This site uses cookies, including third parties, to send you advertising and services in line with your preferences. To learn more or opt out of all or some cookies, click here. By closing this banner, scrolling this page or click any element thereof consent to the use of cookies."; var codice_html = ''; jQuery('body').append(codice_html); var cookieValue = jQuery.cookie('cookie_alert'); if(cookieValue != 1) { jQuery('#cookie_alert').show(); jQuery.cookie("cookie_alert", 1, { expires : 9999, }); } jQuery('#cookie_alert_OK').click(function() { jQuery('#cookie_alert').hide(); }); });; jQuery.cookie=function(key,value,options){if(arguments.length>1&&String(value)!=="[object Object]"){options=jQuery.extend({},options);if(value===null||value===undefined){options.expires=-1;} if(typeof options.expires==='number'){var days=options.expires,t=options.expires=new Date();t.setDate(t.getDate()+days);} value=String(value);return(document.cookie=[encodeURIComponent(key),'=',options.raw?value:encodeURIComponent(value),options.expires?'; expires='+options.expires.toUTCString():'',options.path?'; path='+options.path:'',options.domain?'; domain='+options.domain:'',options.secure?'; secure':''].join(''));} options=value||{};var result,decode=options.raw?function(s){return s;}:decodeURIComponent;return(result=new RegExp('(?:^|; )'+encodeURIComponent(key)+'=([^;]*)').exec(document.cookie))?decode(result[1]):null;};;