I want to allow users to input only 2 digits for cents in input type number not 3 or more digits.
Allowed format - $22.45
Not Allowed Format - $22.452
Example -
<input style="width:150px!important;" type="number" name="price" min="1" step="any" required placeholder="Amount" title="Enter payment amount" class="form-control" />
What input pattern should I use for this ?
Thank you !