Hi
I have two options to use to allow me to use drop down lists with automatic select... I have tested both on various systems/browers and one seems to be better ... version 2. I just thought I would get the opinions of the forum as to the best one to use...
Option 1
Option 2 (the version I intend to use at present)
Any opinions appreaciated.
Paul
I have two options to use to allow me to use drop down lists with automatic select... I have tested both on various systems/browers and one seems to be better ... version 2. I just thought I would get the opinions of the forum as to the best one to use...
Option 1
<td>
<SELECT NAME=GroupID onChange=this.form.submit();
STYLE='height:10px;width:90;'>
<OPTION VALUE="Any">Choose page</OPTION>
<OPTION VALUE="http://www.kjbeckett.com/acatalog/leatherwallets.html">J. Fold</OPTION>
<OPTION VALUE="http://www.kjbeckett.com/acatalog/leatherwallets_p2.html">Ted Baker</OPTION>
<OPTION VALUE="http://www.kjbeckett.com/acatalog/leatherwallets_p3.html">Simon Carter</OPTION>
<OPTION VALUE="http://www.kjbeckett.com/acatalog/leatherwallets_p4.html">Stewart/Stand</OPTION>
<OPTION VALUE="http://www.kjbeckett.com/acatalog/leatherwallets_p5.html">Billabong</OPTION>
<OPTION VALUE="http://www.kjbeckett.com/acatalog/leatherwallets_p6.html">Ducti</OPTION>
<OPTION VALUE="http://www.kjbeckett.com/acatalog/leatherwallets_p7.html">db clay</OPTION>
</SELECT>
</TD>
<SELECT NAME=GroupID onChange=this.form.submit();
STYLE='height:10px;width:90;'>
<OPTION VALUE="Any">Choose page</OPTION>
<OPTION VALUE="http://www.kjbeckett.com/acatalog/leatherwallets.html">J. Fold</OPTION>
<OPTION VALUE="http://www.kjbeckett.com/acatalog/leatherwallets_p2.html">Ted Baker</OPTION>
<OPTION VALUE="http://www.kjbeckett.com/acatalog/leatherwallets_p3.html">Simon Carter</OPTION>
<OPTION VALUE="http://www.kjbeckett.com/acatalog/leatherwallets_p4.html">Stewart/Stand</OPTION>
<OPTION VALUE="http://www.kjbeckett.com/acatalog/leatherwallets_p5.html">Billabong</OPTION>
<OPTION VALUE="http://www.kjbeckett.com/acatalog/leatherwallets_p6.html">Ducti</OPTION>
<OPTION VALUE="http://www.kjbeckett.com/acatalog/leatherwallets_p7.html">db clay</OPTION>
</SELECT>
</TD>
<form action="#" method="get" name="getthis" >
<div align="center">
<select name="list" onChange="location=document.forms['getthis'].elements[0].value";style='height:10px;width:90;'>
<option selected="selected">Choose brand</option>
<option value = "http://www.kjbeckett.com/acatalog/leatherwallets.html">J. Fold</option>
<option value = "http://www.kjbeckett.com/acatalog/leatherwallets_p2.html">Ted Baker</option>
<option value = "http://www.kjbeckett.com/acatalog/leatherwallets_p3.html">Simon Carter</option>
<option value = "http://www.kjbeckett.com/acatalog/leatherwallets_p4.html">Stewart/Stand</option>
<option value = "http://www.kjbeckett.com/acatalog/leatherwallets_p6.html">Ducti</option>
<option value = "http://www.kjbeckett.com/acatalog/leatherwallets_p7.html">db clay</option>
</select>
</div>
</form>
<div align="center">
<select name="list" onChange="location=document.forms['getthis'].elements[0].value";style='height:10px;width:90;'>
<option selected="selected">Choose brand</option>
<option value = "http://www.kjbeckett.com/acatalog/leatherwallets.html">J. Fold</option>
<option value = "http://www.kjbeckett.com/acatalog/leatherwallets_p2.html">Ted Baker</option>
<option value = "http://www.kjbeckett.com/acatalog/leatherwallets_p3.html">Simon Carter</option>
<option value = "http://www.kjbeckett.com/acatalog/leatherwallets_p4.html">Stewart/Stand</option>
<option value = "http://www.kjbeckett.com/acatalog/leatherwallets_p6.html">Ducti</option>
<option value = "http://www.kjbeckett.com/acatalog/leatherwallets_p7.html">db clay</option>
</select>
</div>
</form>
Paul
Comment