Answers for "input field that accet only decimal values"

5

input decimal html

<input type="number" class="form-control" required name="balance" min="0" value="0" step="any"/>
Posted by: Guest on September-09-2021
0

not allow decimal in input type number

<form action="#" method="post">
  Numbers: <input name="num" 
                  type="number"
                  min="1"
                  step="1"
                  onkeypress="return event.charCode >= 48 && event.charCode <= 57"
                  title="Numbers only">
  <input type="submit">
</form>
Posted by: Guest on February-03-2022

Code answers related to "input field that accet only decimal values"

Browse Popular Code Answers by Language