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");
}
|
|
How do you compare a value from jQuery with a fixed number? I thought this might work but it doesn't:
|
||
|
|
|
|
if #days is an input then you need .val() instead of value e.g.
|
||
|
|
|
As well as @redsquare 's answer to use
This is because the value could have a leading 0, in which case |
||
|