Anxhelo Lushka
7 years ago
5 changed files with 56 additions and 10 deletions
@ -0,0 +1,53 @@ |
|||||
|
jQuery(function($) { |
||||
|
|
||||
|
checkCookie_eu(); |
||||
|
|
||||
|
function checkCookie_eu() |
||||
|
{ |
||||
|
|
||||
|
var consent = getCookie_eu("cookies_consent"); |
||||
|
|
||||
|
if (consent == null || consent == "" || consent == undefined) |
||||
|
{ |
||||
|
// show notification bar
|
||||
|
$(document).ready(function(){ |
||||
|
setTimeout(function () { |
||||
|
$("#cookieConsent").fadeIn(200); |
||||
|
}, 4000); |
||||
|
}); |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
|
||||
|
function setCookie_eu(c_name,value,exdays) |
||||
|
{ |
||||
|
|
||||
|
var exdate = new Date(); |
||||
|
exdate.setDate(exdate.getDate() + exdays); |
||||
|
var c_value = escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString()); |
||||
|
document.cookie = c_name + "=" + c_value+"; path=/"; |
||||
|
|
||||
|
$('#cookieConsent').hide('slow'); |
||||
|
} |
||||
|
|
||||
|
|
||||
|
function getCookie_eu(c_name) |
||||
|
{ |
||||
|
var i,x,y,ARRcookies=document.cookie.split(";"); |
||||
|
for (i=0;i<ARRcookies.length;i++) |
||||
|
{ |
||||
|
x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("=")); |
||||
|
y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1); |
||||
|
x=x.replace(/^\s+|\s+$/g,""); |
||||
|
if (x==c_name) |
||||
|
{ |
||||
|
return unescape(y); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
$("#closeCookieConsent .cookieConsentOK").click(function(){ |
||||
|
setCookie_eu("cookies_consent", 1, 30); |
||||
|
}); |
||||
|
|
||||
|
}); |
Loading…
Reference in new issue