donster
06-14-2004, 02:06 PM
How can I create a navigational drop down box with different targets?
See example below
<form>
<select size=4 style="width: 225px;" onChange="location.href=this.options[this.selectedIndex].value">
<option value="../lessons/country/country.html"> • Country licks</option>
<option class="red" value="../forum/index.php"> • Forum</option>
<option value="../pdf/chord-chart.pdf"> • PDF Chord Chart</option>
<option class="red" value="simulation.html"> • Chord Simulator</option>
<option value="tab_lesson.html"> • Tablature Explained</option>
<option class="red" value="alternate-guitar-tunings.html"> • Alternate Tunings</option>
<option class="red" value="../serial/gibson.html"> • Gibson Serial Number lookup</option>
</select>
</form>
See example below
<form>
<select size=4 style="width: 225px;" onChange="location.href=this.options[this.selectedIndex].value">
<option value="../lessons/country/country.html"> • Country licks</option>
<option class="red" value="../forum/index.php"> • Forum</option>
<option value="../pdf/chord-chart.pdf"> • PDF Chord Chart</option>
<option class="red" value="simulation.html"> • Chord Simulator</option>
<option value="tab_lesson.html"> • Tablature Explained</option>
<option class="red" value="alternate-guitar-tunings.html"> • Alternate Tunings</option>
<option class="red" value="../serial/gibson.html"> • Gibson Serial Number lookup</option>
</select>
</form>