Modify
<select size="1" name="Products">
To be
<select size="1" name="Products"
onchange="if(this.options.selectedIndex>0) location.href=this.options [this.options.selectedIndex].value">
--
_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________
"Alec Thorne" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
| Jon
|
| Have tried as you suggested with a simple drop down within a normal
| table. The code is as follows.
|
| <body>
|
| <div align="center">
| <center>
| <table border="0" cellpadding="0" cellspacing="0" width="200"
| height="200">
| <tr>
| <td>
| <p align="center"><select size="1" name="Products">
| <option value="">Please Select a Product</option>
| <option value="http://www.page1.htm">Design
| Software</option>
| <option value="http://www.page2.htm">Manufacturing
| Software</option>
| <option value="http://www.page3.htm">Machine Tools</option>
| </select></td>
| </tr>
| </table>
| </center>
| </div>
|
| </body>
|
| Where do I insert the line
|
| <select onchange="if(this.options.selectedIndex>0)location.href=this.options[this.options.selectedIndex].value">
|
| Have tried inserting this before the line
|
| <option value="">Please Select a Product</option>
|
| ...but get an error Expected "]".
|
| I think I should start brushing up on my HTML code..
|
| Thanks again
| Alec