html - Java Plug-in is not supported by this browser -


i trying run applet in .html file. while running on firefox browser giving error "java plug-in not supported browser. more info". browser updated , installed java 8.

how can solve problem

i using, following code

 <html>  <title>my applet</title>    <head>       <script src="http://java.com/js/deployjava.js"></script>    </head>    <body>    <script>    var attributes = {codebase:'http://localhost:8080/puzzle/test',    code:'s.class',    archive: 'testww.jar',    width: '800',     height: '600'};    var parameters = {java_arguments: '-xmx256m'}; // customize per needs    var version = '1.8' ; // jdk version    deployjava.runapplet(attributes, parameters, version);  </script>    </body>  </html>  


Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -