Creating Reusable Validation Code : Validation « Form Control « JavaScript DHTML

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Event
7. Event onMethod
8. Form Control
9. GUI Components
10. HTML
11. Javascript Collections
12. Javascript Objects
13. Language Basics
14. Node Operation
15. Object Oriented
16. Page Components
17. Security
18. Style Layout
19. Table
20. Utilities
21. Window Browser
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
JavaScript DHTML » Form Control » Validation 
Creating Reusable Validation Code

<html>
<head>
<title>Integer Validation</title>
<script language="JavaScript">
<!--
function isInt(textObj) {
   var newValue = textObj.value;
   var newLength = newValue.length;
   for(var i = 0; i != newLength; i++) {
      aChar = newValue.substring(i,i+1);
      if(aChar < "0" || aChar > "9") {
         return false;
      }
   }
   return true;
}
// -->
</script>

</head>
   
<body>
<h1>Integer Validation</h1>
<form name="form1">
<input type="text" size=16 maxlength=16 name="data">
<input type="button" name="CheckButton" value="Validate" onClick="document.form1.result.value = '' + isInt(document.form1.data)">
<br>
Result <input type="text" size=16 maxlength=16 name="result">
</form>
</body>
</html>

           
       
Related examples in the same category
1. Form validation: Not Empty, Valid Radio, is Number, string length, EMail Address
2. Validate an input field with minimum and maximum values
3. Validate an field with a maximum number of characters
4. Phone Number Validation
5. Credit Card Validation
6. Money Format
7. Validating User Input
8. Validate email address
9. Validate a number
10. TextField input length validator
11. Password field validator
12. TextField validator: email, IP address and URL
13. Must be at least 3 characters and not more than 8
14. Only characters are allowed
15. Can be empty
16. Must be a valid email address
17. ComboBox(list box): Must be selected one
18. InputBox: value must be between 10 and 90
19. Not stop when the first failed validation is encountered
20. A CSS is used to highlight the fields which failed to validate
21. Need to select a file
22. A simple form with two passwords that must have the same value
23. Shows the usage of callback functions for checking a field
24. Javascript validation framework
25. Form validator library
w_w__w.___j__a__v_a__2___s___._c___o___m | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.