JQUERY 1.7 now include jQuery.isNumeric( value ) function which can determines whether its argument is a number
http://api.jquery.com/jQuery.isNumeric/
function isNumber(n) { return !isNaN(parseFloat(n)) && isFinite(n); }
http://stackoverflow.com/questions/18082/validate-numbers-in-javascript-isnumeric
Filed under: JavaScript Tagged: JavaScript

Like
Report
*This post is locked for comments