View Full Version : Warning on load?
Davebold370
09-06-2005, 03:27 AM
Hello, i have some adult themes on one of my websites, and i wish to make a pop up box to have small children click out. The script I would like to use is:
<script language="JavaScript">alert(" ")</script>
But this script does not give the option of yes or no. How would I make the script for yes or no and start at the load of the screen? Thank you if you know how to do this and help me.
darco9x2
09-06-2005, 04:15 AM
<html>
<head>
<script type="text/javascript">
function disp_confirm()
{
var name=confirm("Press a button")
if (name==true)
{
document.write("You pressed the OK button!")
}
else
{
document.write("You pressed the Cancel button!")
}
}
</script>
</head>
<body>
<form>
<input type="button" onclick="disp_confirm()" value="Display a confirm box">
</form>
</body>
</html>
just change the document.write(you pressed "this" button!)
Davebold370
09-06-2005, 04:26 AM
Thank you, i'm going to try it out now
Davebold370
09-06-2005, 04:30 AM
Ok tried it, What i want is when you first load. The box appears before anything on the website appears. The box should have a yes or no with the message "Are you over the age of 18?" If they click yes, it procceds and if they click no, it goes to yahoo or something like that. But Thanks anyways for your help.
jscheuer1
09-06-2005, 04:55 AM
Still not precisely what you asked for but, should do:
<html>
<head>
<script type="text/javascript">
var name=confirm("I certify that I am over the age of 18.\nClick OK to confirm, otherwise click cancel, you know who you are . . ." )
if (!name)
location.href="http://www.yahoo.com"
else
onload=function(){document.body.style.display='block'}
</script>
</head>
<body style="display:none">
Racy content goes here.
</body>
</html>
Davebold370
09-06-2005, 10:12 PM
Thanks that is perfect! I have been tring to get that code for a while now, but havn't be able to fingure it out. Now to study it and figure out how you did it. I'm rather new when it comes to websites and stuff, so thanks.
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.