vote up 0 vote down star

How do you compare a value from jQuery with a fixed number?

I thought this might work but it doesn't:

if (parseInt($("#days").value) > 7) {
            alert("more than one week");
        }
flag

80% accept rate

2 Answers

vote up 4 vote down check

if #days is an input then you need .val() instead of value

e.g.

  if (parseInt($("#days").val()) > 7) {
        alert("more than one week");
   }
link|flag
Oh for the love of $(#deity). Thanks! I can eat lunch now. – IainMH Jan 23 at 13:46
vote up 6 vote down

As well as @redsquare 's answer to use .val(), you should specify the radix:

if (parseInt($("#days").val(), 10) > 7) {
            alert("more than one week");
        }

This is because the value could have a leading 0, in which case parseInt would interpret the value as octal.

link|flag
Nice +1, learn something new from SO everyday. – Jon Erickson Jan 23 at 18:44

Your Answer

Get an OpenID
or

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