jerseyralph
12-02-2003, 05:32 AM
I have limited exposure to javascript so I need some basic help.
I am using the follow script for a drop down menu box:
<head>
<script language=JavaScript>
<!--
function Navigate() {
var number = NavSelect.selectedIndex;
location.href = NavSelect.options[number].value; }
// -->
</script>
</head>
Then within the body of the page:
<select name="NavSelect" onChange="Navigate(this.form)">
<option value="" SELECTED>Click to Navigate
<option value="http://governmenteducators.us/munoff/">Municipal Clerks
<option value="http://governmenteducators.us/munoff/">Finance Officers
<option value="http://governmenteducators.us/munoff/">Tax Collectors
<option value="http://governmenteducators.us/munoff/">Public Works Managers
<option value="http://governmenteducators.us/constcode/">Construction Code Officials
<option value="http://governmenteducators.us/constcode/">Technical Assistants
<option value="http://governmenteducators.us/constcode/">Multiple Dwelling Inspectors
</select>
The drop down box works fine in the latest MS IE broswer, but will not work in either Netscape or Mozilla.
What am I missing? Thanks
Ralph
I am using the follow script for a drop down menu box:
<head>
<script language=JavaScript>
<!--
function Navigate() {
var number = NavSelect.selectedIndex;
location.href = NavSelect.options[number].value; }
// -->
</script>
</head>
Then within the body of the page:
<select name="NavSelect" onChange="Navigate(this.form)">
<option value="" SELECTED>Click to Navigate
<option value="http://governmenteducators.us/munoff/">Municipal Clerks
<option value="http://governmenteducators.us/munoff/">Finance Officers
<option value="http://governmenteducators.us/munoff/">Tax Collectors
<option value="http://governmenteducators.us/munoff/">Public Works Managers
<option value="http://governmenteducators.us/constcode/">Construction Code Officials
<option value="http://governmenteducators.us/constcode/">Technical Assistants
<option value="http://governmenteducators.us/constcode/">Multiple Dwelling Inspectors
</select>
The drop down box works fine in the latest MS IE broswer, but will not work in either Netscape or Mozilla.
What am I missing? Thanks
Ralph