H I O X INDIA
FREE Javascript
 HOME  ||  Scripts  ||  Purchase  ||  Tutorials  ||  Images  ||  Tools  ||  Templates 
  :-)  Send Page   :-)   Feedback   :-)   Register   :-)   Links   :-)   Support   :-)
Español Français 中文 Deutsch
 Forums   Hosting   Internet Stats   Easy Calculation   FUN Games 

Java Script Source
List All
Date & Time
Calendar
Stop Watch script
Slide Show
Ad Display
Animated Image Effects
Image Effect
Mouse Effects
Color Picker Tool
Dynamic Color
Random Generator
Select All
Form Validation
Formatting Forms
Textbox Counter
Dynamic Form select
Bookmark
Window / User Info
Pagination
Security / Authenticate
Status Bar
Title Bar
Cursor Position
Country List
Calculators
Delete Repeated Values
Alphanumeric
Free Games




Number Validation Script


About
This javascript will help you to validate the textbox in a form. This java script function helps you to check whether the given value in the textbox is number or integer value.


Features
a)You can validate the textbox with an integer value.
b)You can validate form using this javascript.
c)Just copy the given free javascript code and use it.


Preview
Enter value:


Code
Javascript Code
<!-- Script by hscripts.com -->
/* Created on : Dec 1,2007 Javascript for validating a rounded integer value. This script validates the given input and returns true or false. You have to just call the function with the input as argument. Eg:var d = isInteger(3); returns true; var e = isInteger(4.4); returns false;*/
<script language=javascript> function isInteger(s) { var i; s = s.toString(); for (i = 0; i < s.length; i++) { var c = s.charAt(i); if (isNaN(c)) { alert("Given value is not a number"); return false; } } return true; } </script>
<!-- Script by hscripts.com -->


HTML Code
<!-- Script by hscripts.com -->
<form name=test> <input type=text name=en onKeyup="isInteger(this.value)"> <input type=button name=cc value="Check" > </form>
<!-- Script by hscripts.com -->
Release Date - 01-12-2007.

Get free version without ©copyright link for just 5



Usage
Here we have explained with a form

a)Creating a form by copying the html code to the <body> tag.
<form name=test>
<input type=text name=en onKeyup="isInteger(this.value)">
<input type=button name=cc value="Check">
</form>

b)Copy the javascript code into the <head> tag of your page.

c)If user enters value in the textbox, the function "isInteger(this.value)" is called to check whether the entered value is number. If given value is number, textbox will accept it orelse an alert message will appear.





License
- This javascript (misspelled as java script)/HTML code is given under GPL License
- i.e. Free use for those who use it as it is.
- Free, if your modification does not remove our copyright information and links.
- Detailed License information can be found here
- You can purchase the script if your requirements does not meet GPL License terms.


privacy policy     license     sitemap
© 2004-2005 HIOX INDIA - hioxindia.com

Others