Javascript function works in IE, not in Firefox

G

gizoto316

Here is the function, it works perfectly in IE, but does nothing in
Firefox. Help! :)

<form name ="browsedistrict">
<FONT SIZE="2" FACE="arial, helvetica">Browse by District:<select
name="selectdistrict" size="1" onchange="gotodistrict()">
<option value="none">--Select a District--</option>
<option value="amaddist">Amador</option>
<option value="antdist">Antelope Valley</option>
<option value="buttdist">Butte</option>
..
..
..
</select>
</form>

Here is the javascript function:

function gotodistrict(){

if (browsedistrict.selectdistrict.value == "amaddist")
{
map.addOverlay(amaddist);
map.centerAndZoom(new GPoint(-120.498480, 38.485401), 8);
}
else if (browsedistrict.selectdistrict.value == "antdist")
{
map.addOverlay(antdist);
map.centerAndZoom(new GPoint(-118.029074, 34.630379), 8);
}
else if (browsedistrict.selectdistrict.value == "buttdist")
{
map.addOverlay(buttdist);
map.centerAndZoom(new GPoint(-121.607870, 39.675216), 8);
}
..
..
..
}
 
G

Gérard Talbot

gizoto316 a écrit :
Here is the function, it works perfectly in IE, but does nothing in
Firefox. Help! :)

<form name ="browsedistrict">
<FONT SIZE="2" FACE="arial, helvetica">Browse by District:<select
name="selectdistrict" size="1" onchange="gotodistrict()">
<option value="none">--Select a District--</option>
<option value="amaddist">Amador</option>
<option value="antdist">Antelope Valley</option>
<option value="buttdist">Butte</option>
.
.
.
</select>
</form>

Here is the javascript function:

function gotodistrict(){

if (browsedistrict.selectdistrict.value == "amaddist")

All you need is explained here:
http://www.mozilla.org/docs/web-developer/upgrade_2.html#dom_access

Gérard
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,007
Latest member
obedient dusk

Latest Threads

Top