This works with IE but not with Netscape has anyone run into this?
// Here is the JavaScript - Remember works with IE
function change2Txt(v)
{
types = [" ", "<%=strvar2%><%=strvar6%>"];
types2 = [" ", "<%=strvar3%>"];
types3 = ["", "<%=strvar4%>"];
qty2Div.innerHTML = types[v];
qty3Div.innerHTML = types2[v];
qty4Div.innerHTML = types3[v];
}
// Here is the Select Box
<select onChange='change2Txt(this.selectedIndex)' name=type>
<option value="Standard" selected>Standard</option>
<option value="Futures">Futures</option>
</select>
// Here is the result <DIV>'s
<div id='qty2Div'> </div>
<div id='qty3Div'> </div>
<div id='qty4Div'> </div>
Basically, based on the first option the screen updates itself with more options. Works great in IE, simply awesome but now I got some Netscape users and no luck! Any help you can provide would be great.
// Here is the JavaScript - Remember works with IE
function change2Txt(v)
{
types = [" ", "<%=strvar2%><%=strvar6%>"];
types2 = [" ", "<%=strvar3%>"];
types3 = ["", "<%=strvar4%>"];
qty2Div.innerHTML = types[v];
qty3Div.innerHTML = types2[v];
qty4Div.innerHTML = types3[v];
}
// Here is the Select Box
<select onChange='change2Txt(this.selectedIndex)' name=type>
<option value="Standard" selected>Standard</option>
<option value="Futures">Futures</option>
</select>
// Here is the result <DIV>'s
<div id='qty2Div'> </div>
<div id='qty3Div'> </div>
<div id='qty4Div'> </div>
Basically, based on the first option the screen updates itself with more options. Works great in IE, simply awesome but now I got some Netscape users and no luck! Any help you can provide would be great.