Skip to content

Instantly share code, notes, and snippets.

@TheoOliveira
Created August 6, 2022 17:12
Show Gist options
  • Select an option

  • Save TheoOliveira/75380321d31db8e2b8d9ad533f891cb6 to your computer and use it in GitHub Desktop.

Select an option

Save TheoOliveira/75380321d31db8e2b8d9ad533f891cb6 to your computer and use it in GitHub Desktop.
const preventMinus = (e) => {
if (e.code === 'Minus') {
e.preventDefault();
}
};
<input
type="number"
min="0"
onKeyPress={preventMinus}
/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment