I have seen quite a few posts and tutorials on how to embed Java applets onto a web page, but most are either going with the obsolete <applet> tags or suggesting Java Web Start.
I have tried <embed> tag and <object> tag. None have worked. I would prefer not to go with Java Web Start, but is it the only option nowadays in order to view the applet on chrome? If I were to go with it, does the code have to be changed into a Java web application?
I admit that I am a beginner. Feel free to point out if I misunderstood the situation.
Helpful comments and tips are appreciated.
Code I tried.
<embed archive="Redemption.jar" code="StartingPoint.class" width="200" height="200"type="application/x-java-applet;version=1.6" pluginspage="http://java.sun.com/javase/downloads/ea.jsp"/>
Unfortunately Java applet no longer works in any of the browsers. Chrome was the first browser that stopped allowing Java applets. It used to work in Firefox but even Firefox stopped it a year ago.
Here Mozilla explains why it dropped support for Java applets:
https://support.mozilla.org/en-US/kb/npapi-plugins
Why did browsers stopped supporting plugins such as Java Applet?