Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

why is navigator.javaEnabled() returning false even if Enable Javascript is checked under tools ->options->content. How can I make it to return true. This happens only on Firefox 4

  • 2 件の返信
  • 6 人がこの問題に困っています
  • 80 回表示
  • 最後の返信者: maheshhbhat

more options

I following java script in my xhtml : <script language="JavaScript"> <!-- if(navigator.javaEnabled()) { window.alert('java Enabled'); document.location.href = "login_page.do"; } else{ window.alert('java not Enabled'); } //--> </script> In firefox 4.0.1 navigator.javaEnabled() always returns false even if Enable Javascript is checked under tools ->options->content. How can I make it to return true. Is there any other setting or plugins that I need to make it return true?Please advise. Thanks Mahesh

I following java script in my xhtml : <html> <head> <script language="JavaScript"> <!-- if(navigator.javaEnabled()) { window.alert('java Enabled'); document.location.href = "login_page.do"; } else{ window.alert('java not Enabled'); } //--> </script> </head> <BODY> In firefox 4.0.1 navigator.javaEnabled() always returns false even if Enable Javascript is checked under tools ->options->content. How can I make it to return true. Is there any other setting or plugins that I need to make it return true?Please advise. Thanks Mahesh

選ばれた解決策

Ah, there is a difference between Java and JavaScript. You may need the latest Java plugin from Oracle.

http://www.java.com/en/download/testjava.jsp

More background: http://kb.mozillazine.org/Javascript_is_not_Java

この回答をすべて読む 👍 0

すべての返信 (2)

more options

選ばれた解決策

Ah, there is a difference between Java and JavaScript. You may need the latest Java plugin from Oracle.

http://www.java.com/en/download/testjava.jsp

More background: http://kb.mozillazine.org/Javascript_is_not_Java

more options

Thanks for your help!. I installed the exe from the link and it works now.