JavaScript
1) Where to Find JavaScript: Many Sites
offer Freeware Scripts
2) Steps to use a pull-down menu
<script language="JavaScript">
<!-- Begin
function formHandler(form){var URL =
document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;}
// End -->
</script>
This portion should go after <head> and before </head> in your html document.
6. Next, copy and paste the following code. Paste the code where you want the applet to appear in your webpage.
<form name="form" style="float:
right;">
<select name="site" onchange="javascript:formHandler()" size="1">
<option selected="selected">Go to....</option>
<option value="gfda.html">Homepage</option>
<option value="workshops/workshops.html">Workshops</option>
<option value="resources/resources.html">Resources</option>
</select>
</form>
7. Change navigation links to suit your webpage. For example, mine looks like this:
<form
name="form" style="float: right;">
<!-- The style float: right will align this script to the right of
your page. -->
<select name="site" size=1 OnChange="javascript:formHandler()">
<option>Go to....</option>
<option value="http://www.colorado.edu/geography/foote/geog4043/geog4043.html">Cart2</option>
<option value="http://www.colorado.edu/geography/foote/geog4043/students/students.html">Fall 2009</option>
<option value="http://www.colorado.edu/geography/">Geography</option>
</select>
</form>
8. Save, publish, and your done!
3) Steps to use a pop-up window java script
Paste this text into the body of your
html document, between <body>
and </body>.
Change "WinOpenUseaweb" to
"WinOpenGIF", just like above.
Change "window.status='Use a web' to "window.status='GIF', this must
be the same code connector above.
Finally, change "A. Use a web planner to envision module goals and
materials" to the actual text you want the link to be. For example,
"Animated GIF".