Skip to content

Instantly share code, notes, and snippets.

@MarcusTHellams
Created June 4, 2025 01:39
Show Gist options
  • Save MarcusTHellams/aa7945f1670206cccf42758780ea60c6 to your computer and use it in GitHub Desktop.
Save MarcusTHellams/aa7945f1670206cccf42758780ea60c6 to your computer and use it in GitHub Desktop.
number only text input
const checkDigit = (event: KeyboardEvent) => {
if (event.key.length === 1 && isNaN(Number(event.key))) {
event.preventDefault();
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment