Hi everyone, I have a website and need a age verification so young kids can't visit my website. I have a code and works well but it's constantly asking age verification in any page I visit my website. Can anyone help me on how to configure this code so it only ask once for age verification, thanks in advance.
<script type="text/javascript">// <![CDATA[
var agePrompt=prompt("What is your age?");
if (agePrompt>=18) alert('Welcome!')
else {
alert('Sorry! Come back in a few years!')
document.location="https://www.1adslinks.com/MISC/adult";
}
// ]]></script>