I am using Jquery to check to see if something isNumeric.
How do I check to see if it is not numeric?
if (IsNumeric($('#Amount').val())) { .....
I put a ! before IsNumeric but that did not work.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Your call to the function is a little off. It should be
jQuery.isNumeric()or$.isNumeric(), so your code would look this: