Can not visible Java Applets in Google chrome while calling it from HTML file? But it runs fine in Internet explorer and Mozilla Firefox, while see the source of the page in Google Chrome it shown the applet code is called. Now where and what should I change to run applets in Google Chrome? (Chrome does not show any error, only grey screen appears.)
My applet element in HTML page is:
<applet id= "myApplet" width=850 height=650>
<param name=CODE value=pkg.myApplet.class >
<param name=ARCHIVE value=/Jar/myApplet.jar >
<param name=USER_CD value=username >
<param name=OTHER value=other >
<param name=JAVA_ARGUMENTS value="-Xmx128m">
<param name=CODEBASE_LOOKUP value="false">
</applet>