I can not understand what seems to be the problem.
Following is not enough to call (PUBLIC) applet method from any browser??
I am using it and working fine both in IE and Netscape!!
<HTML>
<HEAD>
<TITLE>Worksheet</TITLE>
<SCRIPT>
function submitRequest()
{
// MyF1 is applet and SaveWorksheet is a public method
// which takes
//
String as a parameter.
document.MyF1.SaveWorksheet(document.wkshtForm.Note.value);
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR="#cfcfcf">
<FORM NAME="wkshtForm" METHOD=GET
<APPLET CODE=WkShtApplet.class width=1000 HEIGHT=400 NAME="MyF1">
</APPLET>
<CENTER>
<B>Note: </B>
<BR>
<TEXTAREA NAME="Note" VALUE="" ROWS=5 COLS=51 WRAP=SOFT>
</TEXTAREA>
<BR>
<BR>
<INPUT TYPE=submit NAME="submitButton" VALUE=" SAVE " OnClick="submitRequest()"
>
<INPUT TYPE=reset NAME="cancelButon" VALUE="CANCEL" >
</CENTER>
</FORM>
</BODY>
</HTML>
~