Java applet / Firefox incompatibility issue

I wrote a Java applet . The user reports that he tried to run it in Firefox 3.0.3 on OS X 10.5.5 but didn't go. He wants him to download the plugin, but when he says that he installs the missing plugins, he cannot find the corresponding installer ...

What's going on here?

+1


source to share


2 answers


You must get Java from Apple, not Sun. Here's a link for it on the download page .



+4


source


I had to make changes to my HTML. I had to change:

<param name = "type" value = "application/x-java-applet;version=1.6">

      

to

<param name = "type" value = "application/x-java-applet;version=1.5">

      



and

type = "application/x-java-applet;version=1.6" \

      

to

type = "application/x-java-applet;version=1.5" \

      

+1


source







All Articles