How to call javascript alert from java class
A:
Perhaps you are looking for a message box similar to the Javascript alert() box? Then use
javax.swing.JOptionPane.showMessageDialog(null, "hello");
Bevin
2010-10-21 10:30:19
+1
A:
I can't know for sure, but if you want to make a Java Applet and Javascript interact, try these:
mdrg
2010-10-21 10:31:53