I was trying to set an input number (html) to only positive numbers and I found this fine solution:
<input type="number" name="test_name" min="0" oninput="validity.valid||
(value='');">
Can anyone tell me how does oninput="validity.valid||(value=''); works? How does it restrict the input to only positive numbers.
Thank you!