This document contains a Java applet. A Java applet is introduced into an HTML document using the applet tag. Only some broswers have implemented the capability of requesting the Java byte-code named in the applet and executing the instructions.
The following applet construct appears between the horizontal lines below:
<applet CODE="HelloApplet.class" width=150 height=30> </applet>
The source for the applet is in the file HelloApplet.java.
The source for the applet is in the file HelloJApplet.java.
<applet CODE="Text.class" width=150 height=30> </applet> <applet CODE="Text.class" width=150 height=30> <param name="text" value="Hallo Welt!"> </applet> <applet CODE="Text.class" width=150 height=30> <param name="text" value="¡Hola mundo!"> </applet>
The source for the applet is in the file Text.java.
A failed attempt to get Java and JavaScript to communicate!