I need to have a text input that accepts only numbers and the dot sign for float numbers.
I don't want a number type input.
I need to have a text input that accepts only numbers and the dot sign for float numbers.
I don't want a number type input.
You can't do this with html only - you'd need to use JavaScript.
e.g. Javascript key board input filtering
There is an <input pattern="">
attribute which can be used for validation, but it does not prevent the input from accepting invalid characters, only prevents them being submitted when the form is validated.