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 text */ function mb_gdpr_warning() { $("body").prepend("
ContinueBy using the site, you acknowledge you have read our Privacy Policy, and agree to our Terms and Conditions. We use cookies to remember who you are and to improve your user experience. By continuing, you accept the use of cookies, including third-party cookies.
"); } $( document ).ready(function() { if(localStorage.mb_gdpr_warning_verified === undefined) { mb_gdpr_warning(); } });