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

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

With Firefox 9.0.1 an app using a javascript confirm command doesn't display the message. Popup blocker is turned off for this app's domain.

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

more options

Application is written in php and javascript. Clicking on a button triggers a javascript confirm dialog. Since upgrading to Firefox 9.0.1 the confirm dialog is not displayed. Popup blocker was first set to allow the app's complete domain, then turned off altogether. Javascript is enabled.

Application is written in php and javascript. Clicking on a button triggers a javascript confirm dialog. Since upgrading to Firefox 9.0.1 the confirm dialog is not displayed. Popup blocker was first set to allow the app's complete domain, then turned off altogether. Javascript is enabled.

選ばれた解決策

Turns out that Firefox became a little more fussy about standards than IE. (Imagine that!!) Code created hidden inputs of type="text" , then called a javascript function and passed the values in the hidden inputs as parameters. The original code just passed the name of the input as a variable. The Firefox Webconsole then complained that the variable was not declared. Once I passed the variable.value, then the error went away, Firefox was happy, didn't break IE, so I'm happy.

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

すべての返信 (1)

more options

選ばれた解決策

Turns out that Firefox became a little more fussy about standards than IE. (Imagine that!!) Code created hidden inputs of type="text" , then called a javascript function and passed the values in the hidden inputs as parameters. The original code just passed the name of the input as a variable. The Firefox Webconsole then complained that the variable was not declared. Once I passed the variable.value, then the error went away, Firefox was happy, didn't break IE, so I'm happy.