Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Browser Java Plugin Detection

What is the preferred method to determine if the Sun Java Plugin is installed in the browser?

like image 565
ghempton Avatar asked Mar 20 '09 18:03

ghempton


2 Answers

java deployment toolkit


script src="http://java.com/js/deployJava.js"

if (deployJava.versionCheck('1.6'))
{ 
alert("1.6 installed")
} 

like image 133
l_39217_l Avatar answered Oct 21 '22 13:10

l_39217_l


You may also consider PluginDetect script.

like image 42
Vladimir Grigorov Avatar answered Oct 21 '22 13:10

Vladimir Grigorov