Please send questions to
st10@humboldt.edu .
<html>
<!--
js_form1.html
adapted from example in:
http://www.w3schools.com/js/tryit.asp?filename=tryjs_alert
a JavaScript tutorial from w3schools.com
adapted by: Sharon Tuttle
last modified: 09-12-06
-->
<head>
<title> js_form1 </title>
<script type="text/javascript">
<!--
// function: disp_alert
//
// display a self-descriptive alert popup
function disp_alert()
{
alert("I am an alert box!!")
}
//-->
</script>
</head>
<body>
<h3> js_form1.html </h3>
<h3> ADAPTED from example in: <br>
http://www.w3schools.com/js/tryit.asp?filename=tryjs_alert, <br>
a JavaScript tutorial from w3schools.com <h3>
<h4> (adapted by Sharon Tuttle, last modified 09-12-06) </h4>
<hr>
<form>
<input type="button" onclick="disp_alert()"
value="Display alert box">
</form>
<script type="text/javascript">
<!--
//-->
</script>
<noscript>
<hr>
<h3> Your browser does not support JavaScript, or has it disabled;
<br>
please note that, as a result, this page will not work. </h3>
<hr>
</noscript>
<hr>
</body>
</html>