Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Cari Bantuan

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

JavaScript alert() is not working in mozilla 19.0.2.Why?

  • 1 balas
  • 6 memiliki masalah ini
  • 9 kunjungan
  • Balasan terakhir oleh cor-el

more options

I have created a .aspx page in it i have added gew javascript function containing alert(). But niether the functions nor the alerts are invoking.why? i have created a javascript function on keypress event as:

function isSpaceKey(evt) {
         //   debugger;
           var charCode = (evt.which) ? evt.which : event.keyCode
           
           if ((charCode < 47 || charCode > 57) &&  charCode != 8) {
               alert("Enter Numeral Values only!");
               return false;
           }
           return true;
       }

and added validation summary in .aspx page enabling its message box if user validation fails . But it is also not working. Before using Firefox i was using IE on which it was working fine. What is the problem? Thanks.

I have created a .aspx page in it i have added gew javascript function containing alert(). But niether the functions nor the alerts are invoking.why? i have created a javascript function on keypress event as: function isSpaceKey(evt) { // debugger; var charCode = (evt.which) ? evt.which : event.keyCode if ((charCode < 47 || charCode > 57) && charCode != 8) { alert("Enter Numeral Values only!"); return false; } return true; } and added validation summary in .aspx page enabling its message box if user validation fails . But it is also not working. Before using Firefox i was using IE on which it was working fine. What is the problem? Thanks.

Semua Balasan (1)

more options