Please send questions to
st10@humboldt.edu .
<html>
<!--
js_onload_cookie1.html
by: Sharon Tuttle
last modified: 09-19-06
-->
<head>
<title> js_onload_cookie1.html </title>
<script type="text/javascript">
<!--
// save name from onload prompt in a cookie,
// then change location to another page
function get_name_onload()
{
var user_name = prompt("Please enter your name: ")
document.cookie = "name=" + user_name
location.href = "js_onload_cookie2.html"
}
//-->
</script>
</head>
<body onload="get_name_onload()">
<h3> js_onload_cookie1.html </h3>
<h4> (by Sharon Tuttle, last modified 09-19-06) </h4>
<hr>
<script type="text/javascript">
<!--
//-->
</script>
<noscript>
<h1> Your browser does not support JavaScript; this page will not work
</h1>
</noscript>
<ul>
<li> <a href="js_onload_cookie2.html"> js_onload_cookie2.html </a>
</ul>
</body>
</html>