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 type="text/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 -->
For customization of this script or any script development, contact us at support@hscripts.com
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
- The javascript (misspelled as java script) is given under GPL License
- i.e. Free use for those who use the codes as it is.
- Free, if your modification does not remove our copyright information and links.
- Click Here for detailed license information.
- You can purchase the script if your requirements does not meet our GPL License terms.