javascript - Checking if Java Platform SE is enabled on Firefox -


i want run applet on client system before want check if java plugins installed , enabled

there 2 java plugin in firefox.

  1. java deployment kit
  2. java platform se

i want check enable/disable status of java platform se plugin in firefox.

i able check java deployment kit enable/disable status using following javascript code

<script type="text/javascript" src="http://java.com/js/deployjava.js"></script> <script type="text/javascript" > function checkjavaplugin() {    if(deployjava.isplugininstalled()==true)    {        alert('java plugin installed');    } } </script> 

from have searched, seems such thing not exist. :o


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

qt - Errors in generated MOC files for QT5 from cmake -