home *** CD-ROM | disk | FTP | other *** search
/ Web Designer 98 (Professional) / WebDesigner 1.0.iso / tutorials / tutorial / pdown2.txt < prev    next >
Encoding:
Text File  |  1997-06-15  |  885 b   |  30 lines

  1. <script language="JavaScript">
  2. <!-- Hide the script from old browsers --
  3.  
  4. // Michael P. Scholtis (mpscho@planetx.bloomu.edu)
  5. // All rights reserved. July 21, 1996
  6. // You may use this JavaScript example as you see fit, as long as the
  7. // information within this comment above is included in your script.
  8.  
  9.  
  10. function surfto(form) {
  11.         var myindex=form.dest.selectedIndex
  12.         location=form.dest.options[myindex].value;
  13.  
  14. }
  15. //-->
  16. </SCRIPT><br>
  17. <CENTER>
  18. <FORM NAME="myform">
  19.   <SELECT NAME="dest" SIZE=1>
  20.     <OPTION SELECTED VALUE="">---------- A Simple Menu -----------
  21.     <OPTION VALUE="http://your.url">Title of URL1
  22.     <OPTION VALUE="http://your.url">Title of URL2
  23.     <OPTION VALUE="http://your.url">Title of URL3
  24.     <OPTION VALUE="http://your.url">Title of URL4
  25.   </SELECT>
  26. <P>
  27. <INPUT TYPE="BUTTON" VALUE="Pull Down Surfing!" onClick="surfto(this.form)">
  28. </FORM>
  29. </CENTER>
  30.