I'm using jquery validation to ensure my users do not enter a negative value into a text field.
I have everything set up correctly and the validation is working for certain things, just not the a range. if I input a negative value, validation still passes. Has anyone encountered this?
<input data-affects="Coaches" data-old="40" data-val="true" data-val-number="The field Maximum Students must be a number." data-val-range="The field Maximum Students must be between 0 and 200." data-val-range-max="200" data-val-range-min="0" id="NumStudentsMax" name="NumStudentsMax" type="number" value="40" aria-invalid="false" class="valid"/>
var foo = null;
$("input").blur(function(e){
foo = $("form").validate($(this));
alert(foo.errorList.length > 0);
});
add
min="0"
to your input :-Demo