function mb_gdpr_warning_confirm() {
localStorage.mb_gdpr_warning_verified = "1";
document.getElementById("mb_gdpr_warning").remove();
}
/* edit below if you want to change the 18+ text */
function mb_gdpr_warning() {
$("body").prepend("
Continue We use cookies to optimize site functionality and give you the best possible experience. By using this website, you agree with our use of cookies.
Learn More. ");
}
$( document ).ready(function() {
if(localStorage.mb_gdpr_warning_verified === undefined) {
mb_gdpr_warning();
}
});