function mb_age_warning_confirm() { localStorage.mb_age_warning_verified = "1"; document.getElementById("mb_age_warning").remove(); } /* edit below if you want to change the 18+ text */ function mb_age_warning() { $("body").append("

This website contains age-restricted materials. If you are under the age of 18 years, or under the age of majority in the location from where you are accessing this website you do not have authorization or permission to enter this website or access any of its materials. By clicking on \"Enter\" , and by entering this website you agree and certify under penalty of perjury that you are an adult.

Enter
Leave
") } $( document ).ready(function() { if(localStorage.mb_age_warning_verified === undefined) { mb_age_warning(); } });