Re: invoke javascript function from an applet
Posted By:
Laxman_Subramanian
Posted On:
Monday, July 1, 2002 01:09 PM
Use Jsobject in your code
JSObject window = JSObject.getWindow( this );
windows.alertbox('hi');
in your page function alertbox(String s)
{
alert(s);
}