I have a text box with an id of EmpNum. I cannot figure out how to use JQuery's isNumeric to check to see if the value is Numeric or not.
I tried: ('#.EmpNum').IsNumeric
but that idd not work.
|
I have a text box with an id of EmpNum. I cannot figure out how to use JQuery's isNumeric to check to see if the value is Numeric or not. I tried: ('#.EmpNum').IsNumeric but that idd not work. |
|||||
|
|
according to http://api.jquery.com/jQuery.isNumeric/ it's : so, it should be |
|||
|
|
|
shouldnt it be more like
|
|||||
|
|
Pass in the value as an argument to isNumeric. Also make sure you are using jQuery version 1.7 as this was added in 1.7.
|
|||
|
|
|
Try the following:
Also the isNumeric method was only added in version 1.7, which version are you using? |
|||
|
|