Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
what's ('#.EmpNum')? i suppose you mean $("#EmpNum").. – bitsMix Dec 1 '11 at 15:01
The documentation is here: api.jquery.com/jQuery.isNumeric You have to understand the difference between methods and static functions... – Šime Vidas Dec 1 '11 at 15:02

4 Answers

up vote 5 down vote accepted

according to http://api.jquery.com/jQuery.isNumeric/

it's :jQuery.isNumeric(value)

so, it should be $.isNumeric($("#EmpNum").val())

share|improve this answer

shouldnt it be more like

if($.isNumeric($('#EmpNum').val())
share|improve this answer
1  
This answer is correct; here's the documentation to compliment his answer. – jabclab Dec 1 '11 at 15:02

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.

$.isNumeric( $('#EmpNum').val() )
share|improve this answer

Try the following:

$.isNumeric($('#EmpNum').text())

Also the isNumeric method was only added in version 1.7, which version are you using?

See here for jsFiddle.

share|improve this answer
That won't work. – aziz punjani Dec 1 '11 at 15:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.