Creating a JavaScrit Functon to check the Numeric Values in a field... Unfortunalltyl which is not there inJavaScript By Default...
the function goes like This
[code]
<SCRIPT language="JavaScript" >
</SCRIPT>
[/code]
Now once a function is ready we can use it as follows to check a field and returns an error
message if the contents are not numeric:
[code]
if (document.formname.fieldname.value.length == 0)
{
alert("Please enter a value.");
}
else if (chkNumeric(document.formname.fieldname.value) == false)
{
alert("Please check - the string conatins non numeric value!");
}
[/code]
++
Thanks and Regards
Meetu Choudhary
| < Prev | Next > |
|---|

Thanks Meetu, Its really a great and...
Good one
massive formating
Well described
Really nice but I do not like the for...