Please send questions to
st10@humboldt.edu .
<html>
<!--
js_nav1.html
adapted from example in:
http://www.w3schools.com/js/js_browser.asp
a JavaScript tutorial from w3schools.com
adapted by: Sharon Tuttle
last modified: 09-14-06
-->
<head>
<title> js_nav1 </title>
</head>
<body>
<h3> js_nav1.html </h3>
<h3> ADAPTED from example in: <br>
http://www.w3schools.com/js/js_browser.asp, <br>
a JavaScript tutorial from w3schools.com <h3>
<h4> (adapted by Sharon Tuttle, last modified 09-14-06) </h4>
<hr>
<script type="text/javascript">
<!--
var browser = navigator.appName
var browser_version = navigator.appVersion
// interesting feature of parseFloat: if a number is "inside" a
// larger string, it grabs the first thing that looks like a
// number to it and returns that...!
var version_num = parseFloat(browser_version)
//-->
</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>
<h1> Some browser information: </h1>
<!-- table example, to show 1 way to "structure" output more
attractively in HTML... -->
<table>
<tr> <th> Browser name: </th>
<script type="text/javascript">
<!--
document.write("<td>", browser, " </td>")
//-->
</script>
</tr>
<tr> <th> Browser version: </th>
<script type="text/javascript">
<!--
document.write("<td>", browser_version, " </td>")
//-->
</script>
</tr>
<tr> <th> Version number: </th>
<script type="text/javascript">
<!--
document.write("<td>", version_num, " </td>")
//-->
</script>
</tr>
</table>
<hr>
</body>
</html>