
|
| |  |  | Validate Dates |
|
|
Validate Numbers
Home :: Javascript :: Validate Numbers
Javascript functions can validate numbers. Here is a javascript function
to ensure numeric user input from form fields on your web pages. Attach it to the onchange event
of a form field or insert it in a handler.
You can use the regular expression version but this does not work in Mozilla Firefox. The simpler version, using the javascript isNaN is more cross platform.
Next >> Validate Password
|