How can i find JRE is installed or not if installed, how can i find it's enable.?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • gan
    New Member
    • Aug 2007
    • 11

    How can i find JRE is installed or not if installed, how can i find it's enable.?

    Hi,

    I have a java applet on my webpage. It works on most browsers but on
    certain broswers (like IE7) that have JRE disabled by default, it
    doesn't work.

    I want to detect whether JRE is installed or not and if it is
    installed, is it enabled or disabled. Can this be done in JS? If so
    can someone please tell me how?

    Thanks
  • dmjpro
    Top Contributor
    • Jan 2007
    • 2476

    #2
    Originally posted by gan
    Hi,

    I have a java applet on my webpage. It works on most browsers but on
    certain broswers (like IE7) that have JRE disabled by default, it
    doesn't work.

    I want to detect whether JRE is installed or not and if it is
    installed, is it enabled or disabled. Can this be done in JS? If so
    can someone please tell me how?

    Thanks
    Yeah!
    This can be done using JavaScript.
    But then you should have posted in JavaScript forum.
    Anyway!
    This is your solution.
    [code=javascript]
    if(navigator.ja vaEnabled){/*Your code*/}
    [/code]

    Try it.
    I think it will work.
    Good Luck.

    Kind regards,
    Dmjpro.

    Comment

    Working...