0

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 !

site123
  • 41
  • 6

1 Answers1

1

Correct code is:

<input style="width: 150px !important;" type="number" name="price" min="1" step="0.01" required placeholder="Amount" title="Enter payment amount" class="form-control" />

You miss to declare: step="0.01"...

Hope this helps.

Alessandro
  • 900
  • 12
  • 23