- Mar 22, 2013
- 9,143
- 10,489
I have a form on my site, and I want to make the minimum number that's allowed to be inputted be 10 or higher.
Here's the code for that form:
Can anyone help me get this done?
Thank you
Here's the code for that form:
PHP:
<input type="number" id="amount" onchange="updateInput(this.value)" class="form-control" value="10" placeholder="1.00" autocomplete="off" required>
Can anyone help me get this done?
Thank you