Lesson 21: The Script and Its Effect
Welcome!
The Script
<SCRIPT LANGAUAGE="javascript">
if (confirm("Are you sure you want to enter Effect Two?") )
{
parent.location='Chap4Lsn21.htm';
alert("Good choice");
}
else
{
alert("Then you'll stay right here");
}
</SCRIPT>
The Script's Effect
It's that confirm box.
Back to the
JavaScript Home Page