Skip to content

Instantly share code, notes, and snippets.

@suebphatt
Last active May 30, 2018 08:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suebphatt/b4a4516e574553de823bdb399de9756e to your computer and use it in GitHub Desktop.
Save suebphatt/b4a4516e574553de823bdb399de9756e to your computer and use it in GitHub Desktop.
ONLY NUMBER JS -- Allow only number to be typed on input field, also works on mobile
// -- number only 2
$(".only-number").on('keyup change', function(){
// Remove invalid characters
var sanitized = $(this).val().toString().replace(/[^0-9]/g, '');
// Update value
$(this).val(sanitized);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment