jQuery.isNumeric()

jQuery

jQuery.isNumeric()


jQuery.isNumeric( value ) Returns: Boolean

Description: Determines whether its argument is a number.

  • version added: 1.7jQuery.isNumeric( value )

The $.isNumeric() method checks whether its argument represents a numeric value. If so, it returns true. Otherwise it returns false. The argument can be of any type.

Example:

Sample return values of $.isNumeric with various inputs.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
                                  
$.isNumeric("-10"); // true
$.isNumeric(16); // true
$.isNumeric(0xFF); // true
$.isNumeric("0xFF"); // true
$.isNumeric("8e5"); // true (exponential notation string)
$.isNumeric(3.1415); // true
$.isNumeric(+10); // true
$.isNumeric(0144); // true (octal integer literal)
$.isNumeric(""); // false
$.isNumeric({}); // false (empty object)
$.isNumeric(NaN); // false
$.isNumeric(null); // false
$.isNumeric(true); // false
$.isNumeric(Infinity); // false
$.isNumeric(undefined); // false