views:

54

answers:

2

Java Applet Development - JavaScript code to check whether JRE is installed on client machine.

+1  A: 

Use Deployment Toolkit script

use getJREs() by including the above javascript and the getJREs() method returns an array of currently-installed JRE version strings .

Hope this helps

YetAnotherCoder
A: 

navigator.javaEnabled() will return true if java is enabled, false otherwise

Redlab