- 2
I have a need for a popup where users can say yes or no to being above 18 years.
Also this popup should be shown whenever a enters the site including from a google link where they might end on a particular product. What widget zone should I use for a popup?
This is the java script - not final version - that roughly has the need functionality.
<script>
function myFunction() {
var txt;
if (confirm("Jeg erklærer at jeg er over 18 år i forbindelse med køb af spiritus.")) {
txt = "Ja, jeg er over 18 år.";
} else {
txt = "Jeg er under 18 år.";
}
}
</script>
Also this popup should be shown whenever a enters the site including from a google link where they might end on a particular product. What widget zone should I use for a popup?
This is the java script - not final version - that roughly has the need functionality.
<script>
function myFunction() {
var txt;
if (confirm("Jeg erklærer at jeg er over 18 år i forbindelse med køb af spiritus.")) {
txt = "Ja, jeg er over 18 år.";
} else {
txt = "Jeg er under 18 år.";
}
}
</script>