|
Here is the code when I was getting the error message after clicking 'back to top':
<table align="center"><tr><td>
<form name="form1" id="form1" action="">
Select Number:<br />
<select name="Sections" onChange="MM_jumpMenu('parent',this,1)">
<option>-- Select Number --</option>
<option value="#one">One</option>
<option value="#two">Two</option>
<option value="#three">Three</option>
</select>
</form>
</td></tr></table>
Here is what I changed it to (moved "Select Number" out of <option> into up front text, changed value in <select> statement, specified website page for each option):
<table align="center"><tr><td>
<form name="form1" id="form1" action="">
Select Number:<br />
<select name="Sections" onChange="MM_jumpMenu('parent',this,0)">
<option value="http://www.abc.com/numbers.htm#one">One</option>
<option value="http://www.abc.com/numbers.htm#two">Two</option>
<option value="http://www.abc.com/numbers.htm#three">Three</option>
</select>
</form>
</td></tr></table>
I'm not sure if all of these changes are needed - just that it works now in Chrome and Safari.
|