Possible duplicate:
Determine if java client browser is installed and can run applets
I would like to run a check to check if Java is installed or disabled / blocked in IE.
I tried navigator.javaEnabled () and it works as expected in Firefox (v10.0.2), but in IE8 it returns TRUE, However IE displays a prompt to the user:
The page you are viewing uses Java.
Additional Java support information is available on the Microsoft website.
The problem with this is that there is a checkbox "Do not show this message again"
, which can be checked, and then the user will no longer be asked not to enable Java.
How can I deal with the lack of Java support in IE?
source share