Hi I'm wondering if it is possible to show an Alert Confirm Prompt only once on and after selecting the OK prompt.
I'm using this as an age verifier I want to stop the dialogue popping up each time the website is visited after the 'OK' is selected.
This is what I'm working with.
<!--
var answer = confirm ("By joining this website you confirm to be 18 or older. Press 'OK' to confirm or 'Cancel' to leave.")
if (!answer)
window.location="http://www.google.com/"
// -->
Thanks