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.
- java deployment kit
- 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
Post a Comment