If I want to create a drop down menu that takes a person to a web site based on their selection, I have to use a little bit of Javascript and the html we learned ion the forms section.
Create a page:
|
<html> Nothing is here yet! </body> </html>
|
We will add two things to the page. The first will be some Javascript within the <head> tag.
|
<html> <SCRIPT language="javascript"> <body> Nothing is here yet! </body> </html>
|
Now we will add the drop down menu using the form stuff we learned recently>
|
<html> <SCRIPT language="javascript"> <body> <form name="gomenu"> </body> |
Click here to see this work.