how to?
It's possible to call a JavaScript from JAVA applet and even pass it some params:
PHP Code:
String myJavaScript = "alert('Hello from Applet!');";
JSObject win = JSObject.getWindow(this);
win.eval(myJavaScript);
But is there some way to read the
return value of JavaScript if any?