How can you allow input type="number"
to accept something like 1, 2, 3, 55
rather than just regular number
with decimal.
I tried using pattern but it didn't seems to work its magic as its still only accepting number and decimal.
Example:
<input type="number" pattern="[0-9]+([\.,][0-9]+)?">
Desired:
<input type="text" pattern="[0-9]+([\.,][0-9]+)?" value="1, 2, 3, 4">
<input type="number" pattern="[0-9]+([\.,][0-9]+)?">