Hello, quick question (hopefully):
I have a script that manipulates two "Select" elements. My onload calls a function that sets onchange for each "Select":
The code works fine in Firefox (of course), but IE only recognizes the first one. Using alert boxes, I've pinpointed that IE will run populateModels to completion, but will never enter modelSelected.
Does anyone have any ideas as to why? Do you need to see the functions? I don't see any syntax errors, so I'm a little lost. Any help is appreciated. Thanks.
-Mike Biasetti
I have a script that manipulates two "Select" elements. My onload calls a function that sets onchange for each "Select":
Code:
document.getElementById("make").onchange = populateModels;
document.getElementById("models").onchange = modelSelected;
Does anyone have any ideas as to why? Do you need to see the functions? I don't see any syntax errors, so I'm a little lost. Any help is appreciated. Thanks.
-Mike Biasetti
Comment