Created
July 1, 2019 23:32
-
-
Save liuxd/9f2b6e80f11f314efa9715b00882588c to your computer and use it in GitHub Desktop.
[Prevent Negative values in number input]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input type="number" min="0" oninput="this.value = Math.abs(this.value)"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment