Reputation: 6102
Recently, I had came across an open source a Java applet. I wanted to know is there somehow I could create a script that could be distributed and the applet could be embedded in any website?
I have been able to inject JQuery and JS scripts into websites by placing a <script>
tag pointing to a Javascript file and placing it in the header of the page but I don't know how a java applet can be injected.
Upvotes: 2
Views: 666
Reputation: 7790
You can take a look at corresponding tutorial page: http://download.oracle.com/javase/tutorial/deployment/applet/deployingApplet.html
General steps are the following:
Upvotes: 2