Vogan Gaudo
11-19-2007, 01:20 PM
What should I add to my form element
to make this JAVA script
function goToURL(form)
{
var myindex=form.dropdownmenu.selectedIndex
if(!myindex=="")
{
window.location.href=form.dropdownmenu.options[myindex].value;
}
}
trigger the appropriate page?
Changing value to eg value"Brugge.htm" doesn't do so.
Or do I need another JAVA script all together?
<form>
<select name="destination" size="27" class="dest_select">
<optgroup class="destit" label="Belgium (City Tours)">
<option class="optsup" value="Brugge" onClick="Brugge.htm">Brugge</option>
<option class="optsup" value="Brussel">Brussel</option>
<option class="optsup" value="Gent">Gent</option>
<option class="optsup" value="Leuven">Leuven</option>
<option class="optsup" value="Oostende">Oostende</option>
</optgroup>
<optgroup class="destit" label="Belgium (Coast)">
<option class="optsup" value="De_Haan">De Haan</option>
<option class="optsup" value="De_Panne">De Panne</option>
<option class="optsup" value="Knokke">Knokke</option>
<option class="optsup" value="Oostende">Oostende</option>
<option class="optsup" value="Zeebrugge">Zeebrugge</option>
</optgroup>
<optgroup class="destit" label="Canada (Alberta)">
<option class="optsup" value="Rockies">Rocky Mountains</option>
</optgroup>
<optgroup class="destit" label="Canada (British Columbia)">
<option class="optsup" value="Rockies">Rocky Mountains</option>
<option class="optsup" value="Gulf Islands">Gulf Islands</option>
</optgroup>
<optgroup class="destit" label="Great Britain (England)">
<option class="optsup" value="Lake District">Lake District</option>
<option class="optsup" value="Yorkshire Dales">Yorkshire Dales</option>
</optgroup>
</select>
</form>
to make this JAVA script
function goToURL(form)
{
var myindex=form.dropdownmenu.selectedIndex
if(!myindex=="")
{
window.location.href=form.dropdownmenu.options[myindex].value;
}
}
trigger the appropriate page?
Changing value to eg value"Brugge.htm" doesn't do so.
Or do I need another JAVA script all together?
<form>
<select name="destination" size="27" class="dest_select">
<optgroup class="destit" label="Belgium (City Tours)">
<option class="optsup" value="Brugge" onClick="Brugge.htm">Brugge</option>
<option class="optsup" value="Brussel">Brussel</option>
<option class="optsup" value="Gent">Gent</option>
<option class="optsup" value="Leuven">Leuven</option>
<option class="optsup" value="Oostende">Oostende</option>
</optgroup>
<optgroup class="destit" label="Belgium (Coast)">
<option class="optsup" value="De_Haan">De Haan</option>
<option class="optsup" value="De_Panne">De Panne</option>
<option class="optsup" value="Knokke">Knokke</option>
<option class="optsup" value="Oostende">Oostende</option>
<option class="optsup" value="Zeebrugge">Zeebrugge</option>
</optgroup>
<optgroup class="destit" label="Canada (Alberta)">
<option class="optsup" value="Rockies">Rocky Mountains</option>
</optgroup>
<optgroup class="destit" label="Canada (British Columbia)">
<option class="optsup" value="Rockies">Rocky Mountains</option>
<option class="optsup" value="Gulf Islands">Gulf Islands</option>
</optgroup>
<optgroup class="destit" label="Great Britain (England)">
<option class="optsup" value="Lake District">Lake District</option>
<option class="optsup" value="Yorkshire Dales">Yorkshire Dales</option>
</optgroup>
</select>
</form>