Site hosted by Angelfire.com: Build your free website today!






Pulldown Menu




This menu can be as long or as short as you want by adding more OPTION VALUE tags to the list.

<!-- TWO STEPS TO INSTALL PULLDOWN MENU: 1. Paste the coding into the HEAD of your HTML document 2. Add the last code into the BODY of your HTML document --> <!-- STEP ONE: Copy this code into the HEAD of your HTML document -->

<HEAD>

<SCRIPT LANGUAGE="JavaScript">.

<!-- Original: Alex Tu

<boudha1@hotmail.com> -->

<!-- Web Site: http://www.geocities.com/MadisonAvenue/4368 --> <!-- The JavaScript Source!!

http://javascriptsource.com -->


<!-- Begin
function formHandler(){
var URL =
document.form.site.options[document.form.site.se
lectedIndex].value;
window.location.href = URL;
// End -->
}
</SCRIPT>
</HEAD>

<!-- STEP TWO: Paste this code into the BODY of your HTML document -->

<body>
<CENTER>
<FORM name = "form">
<SELECT NAME="site" SIZE=1 onChange
="formHandler()">
<OPTION VALUE="">Go to....
<OPTION
VALUE="http://www.metacrawler.com">Metacrawler
<OPTION
VALUE="http://www.altavista.digital.com">Altavis ta
<OPTION
VALUE="http://www.webcrawler.com">Webcrawler
<OPTION VALUE="http://www.lycos.com">Lycos
<OPTION
VALUE="http://www.angelfire.com/ny/papasotherstuff">My Home Page
</SELECT></FORM> </CENTER>

Back To Javascript Menu