I am using jQuery validator and everything works fine. But now I have a requirement of using min and max value. But here is a problem.
Requirement
The user can input values from 60
-600
or 0
.
Code
<input type="number" value="0" max="600" min="60" class="form-control" id="interval" placeholder="Enter interval in seconds 0 or min. 60 - max 600" name="interval">
Problem
The issue in this is user can't input 0
value.