How do i modify this html drop down navigation bar?

Jarid

New member
Here is the code:

<form name="jump">
<select name="menu" onChange="location=document.jump.menu.options[document.jump.menu.selectedIndex].value;" value="GO">
<option value="">Page:</option>
<option value="????????">Character:</option>
<option value="page1.html">Bob</option>
<option value="page0.html">Fred</option>
3</option>
</select>
</form>

I need a value to put in place of "??????" so that when "character:" is clicked on the page does not change. Or... how can i change that line of code so that "character:" is displayed but it is not an active link.
 
Back
Top