function checkNumeric(value){
var anum=/(^d+$)|(^d+.d+$)/
if (anum.test(value))
return true;
return false;
}
Check if a value is numeric or not
Leave a Reply
You must be logged in to post a comment.
function checkNumeric(value){
var anum=/(^d+$)|(^d+.d+$)/
if (anum.test(value))
return true;
return false;
}
You must be logged in to post a comment.