B
beenamore
Hi,
I have two select lists and depending on the value selected in the
first select dropdown, I want to populate the second list.
I tired a couple of different ways, but for some reason, it works fine
on IE but not on Firefox. On Firefox the second dropdown list doesnt
get populated.
Any pointers on how to populate the second dropdown..
Heres the code:-
for(var j=0;j<array.length;j++)
{
this.document.getElementById("secondSelectName").options[j] = new
Option("txt", "val");
}
for(var j=0;j<array.length;j++)
{
var oOption = document.createElement("OPTION");
secondSelectlist.options.add(oOption);
oOption.innerText = "txt";
oOption.value = "value";
}
for(var j=0;j<array.length;j++)
{
this.document.getElementById("secondSelectName").add(new Option("txt",
"val"));
}
Thanks for the inputs,
Beena
I have two select lists and depending on the value selected in the
first select dropdown, I want to populate the second list.
I tired a couple of different ways, but for some reason, it works fine
on IE but not on Firefox. On Firefox the second dropdown list doesnt
get populated.
Any pointers on how to populate the second dropdown..
Heres the code:-
for(var j=0;j<array.length;j++)
{
this.document.getElementById("secondSelectName").options[j] = new
Option("txt", "val");
}
for(var j=0;j<array.length;j++)
{
var oOption = document.createElement("OPTION");
secondSelectlist.options.add(oOption);
oOption.innerText = "txt";
oOption.value = "value";
}
for(var j=0;j<array.length;j++)
{
this.document.getElementById("secondSelectName").add(new Option("txt",
"val"));
}
Thanks for the inputs,
Beena