Skip to content

Instantly share code, notes, and snippets.

@liuxd
Created July 1, 2019 23:32
Show Gist options
  • Save liuxd/9f2b6e80f11f314efa9715b00882588c to your computer and use it in GitHub Desktop.
Save liuxd/9f2b6e80f11f314efa9715b00882588c to your computer and use it in GitHub Desktop.
[Prevent Negative values in number input]
<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