I have a drop down box that contians different options for a java applet. When the user selects a new option from the drop down the content in the Java applet changes. I am using the onChange to send the value of their option to the following JavaScript:
<script language="JavaScript">
<!--
var IVR;
function loadIVR() {
IVR = self.document.forms[0].varIRV.value;
pano.Set_file(IVR);
pano.ResetApplet();
}
function MM_callJS(jsStr) { //v2.0
return eval(jsStr)
}
//-->
</script>
In the function loadIVR() the pano.Set_file(IVR) and pano.ResetApplet() allow me to change the content of my applet without reload the HTML page. These are already built into the applet.
This works fine in IE. Here is the URL to test:
In Netscape I can't get it to work. I don't get an error but the applet never seems to get the data from the .Set_file(IVR) and pano.ResetApplet()?
I am guessing I am doing something that is not supported by Netscape. Can someone please help me?
Thanks in advance,
Ed
<script language="JavaScript">
<!--
var IVR;
function loadIVR() {
IVR = self.document.forms[0].varIRV.value;
pano.Set_file(IVR);
pano.ResetApplet();
}
function MM_callJS(jsStr) { //v2.0
return eval(jsStr)
}
//-->
</script>
In the function loadIVR() the pano.Set_file(IVR) and pano.ResetApplet() allow me to change the content of my applet without reload the HTML page. These are already built into the applet.
This works fine in IE. Here is the URL to test:
In Netscape I can't get it to work. I don't get an error but the applet never seems to get the data from the .Set_file(IVR) and pano.ResetApplet()?
I am guessing I am doing something that is not supported by Netscape. Can someone please help me?
Thanks in advance,
Ed