Forum Moderators: open
<!-- Hide the script from old browsers --
function surfto(form) {
var myindex=form.select1.selectedIndex
if (form.select1.options[myindex].value != "0") {
location=form.select1.options[myindex].value;}
}
document.writeln('<form>');
document.writeln('<SELECT NAME="select1" onChange="surfto(this.form)">');
document.writeln('<SIZE="1"');
document.writeln('<OPTION SELECTED VALUE="0"> - I N D E X - ');
document.writeln('<OPTION VALUE="index.html">AP4J Home');
document.writeln('<OPTION VALUE="page2.html">The Passion');
document.writeln('<OPTION VALUE="jazz_styles.html">Jazz Styles');
document.writeln('<OPTION VALUE="page3.html">Timeline');
document.writeln('<OPTION VALUE="eoj.html">Etymology');
document.writeln('<OPTION VALUE="dates.html">Milestones');
document.writeln('<OPTION VALUE="agdih.html">A Great Day in Harlem');
document.writeln('<OPTION VALUE="festivals.html">Festivals');
document.writeln('<OPTION VALUE="mags.html">Newsstand');
document.writeln('<OPTION VALUE="page1.html">Discussions & Searches');
document.writeln('<OPTION VALUE="page10.html">Jazz Artists Gallery');
document.writeln('<OPTION VALUE="webcasts.html">Webcasts');
document.writeln('<OPTION VALUE="juke.html">MIDI files');
document.writeln('<OPTION VALUE="page5.html">Music Instruction');
document.writeln('<OPTION VALUE="mtl.html">Music Teacher Locator');
document.writeln('<OPTION VALUE="page6.html">Basic Musicianship');
document.writeln('<OPTION VALUE="keys.html">Virtual Piano Chords');
document.writeln('<OPTION VALUE="page4.html">The Author');
document.writeln('<OPTION VALUE="site_tree.html">Site Tree');
document.writeln('<OPTION VALUE="page7.html">Other Sites');
document.writeln('</SELECT>');
document.writeln('</form>');
//-->
The default value for SELECT is 1 in most browsers, and that's why the current code seems to get the result you're aiming for. The browser is just ignoring the SIZE tag, which you can see by changing the number to "3" -- you still get 1 option at a time.
(edited by: tedster at 10:55 pm (utc) on Mar. 10, 2002)