Please send questions to
st10@humboldt.edu .
<html>
<!--
js_obj_props1.html
adapted from example in Chapter 1, pp. 24-27, in:
"JavaScript: Concepts and Techniques - Programming Interactive
Web Sites", by Tine Spain McDuffie, published by
Franklin, Beedle and Associates, 2003.
adapted by: Sharon Tuttle
last modified: 09-05-06
-->
<head>
<title> js_obj_props1 </title>
</head>
<body>
<h3> js_obj_props1.html </h3>
<h3> ADAPTED from example in Chapter 1, pp. 24-27, in: <br>
"JavaScript: Concepts and Techniques - Programming Interactive
Web Sites", <br>
by Tine Spain McDuffie, <br>
published by Franklin, Beedle and Associates, 2003.<h3>
<h4> (adapted by Sharon Tuttle, last modified 09-05-06) </h4>
<hr>
<script type="text/javascript">
<!--
document.write("<h2> Some properties of the <code><strong>",
" navigator </strong></code> object </h2>")
document.write("<ul>")
document.write("<li> appName: ", navigator.appName, "</li>")
document.write("<li> appVersion: ", navigator.appVersion, "</li>")
document.write("<li> userAgent: ", navigator.userAgent, "</li>")
document.write("</ul>")
document.write("<h2> Some properties of the <code><strong>",
" window </strong></code> object </h2>")
document.write("<ul>")
document.write("<li> innerHeight: ", window.innerHeight, "</li>")
document.write("<li> innerWidth: ", window.innerWidth, "</li>")
document.write("<li> location: ", window.location, "</li>")
document.write("</ul>")
document.write("<h2> Some properties of the <code><strong>",
" history </strong></code> object </h2>")
document.write("<ul>")
document.write("<li> length: ", window.history.length, "</li>")
document.write("</ul>")
document.write("<h2> Some properties of the <code><strong>",
" location </strong></code> object </h2>")
document.write("<ul>")
document.write("<li> href: ", window.location.href, "</li>")
document.write("<li> protocol: ", window.location.protocol, "</li>")
document.write("</ul>")
//-->
</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>