jQuery.isNumeric( value )Returns: Boolean
Description: Determines whether its argument represents a JavaScript number.
- 
version added: 1.7jQuery.isNumeric( value )- 
valueType: AnythingThe value to be tested.
 
- 
The $.isNumeric() method checks whether a value is a finite number, or would be cast to one by Number. 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 16 17 18 19 20 | 
 |