Number Validation

You can add this IF statement to any javascript function and change it as needed. This will validate whether a field is only numbers.

   if(isNaN(myForm.txt_myField.value))
   {
     alert("Invalid data format.\n\nOnly numbers are allowed.");
     myForm.txt_myField.focus();
     return (false);
   }

You might also like...

Comments

Super Tal Always working hard!!

Contribute

Why not write for us? Or you could submit an event or a user group in your area. Alternatively just tell us what you think!

Our tools

We've got automatic conversion tools to convert C# to VB.NET, VB.NET to C#. Also you can compress javascript and compress css and generate sql connection strings.

“Walking on water and developing software from a specification are easy if both are frozen.” - Edward V Berard