Deborah's Greeting Example
When you enter this page you are prompted for your name. When you leave, you will be asked if this page was a help to you.
In the Head section enter the following code.
<SCRIPT>
<!-- Hide from incompatible browsers
var studentName = ""
function greetStudent() {
studentName = prompt("Please enter your name", "Enter your name here");
alert("Welcome " + studentName + "!");
}
function farewellStudent() {
alert("Good bye, " + studentName + ". Was this page helpful?");
}
//Stop Hiding from incompatible broswers-->
</SCRIPT>
The following is included in the beginning BODY tag.
<BODY onLoad="greetStudent();"
onUnload="farewellStudent();">
|