Skip to content

Instantly share code, notes, and snippets.

@feliperaul
Created May 1, 2018 03:22
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 feliperaul/aae66689c10cbbe986ceed92d069b544 to your computer and use it in GitHub Desktop.
Save feliperaul/aae66689c10cbbe986ceed92d069b544 to your computer and use it in GitHub Desktop.
Input somente numérico
$('[data-behavior="input_field"]').on('input', function () {
$(this).val( $(this).val().replace(/\D/g,'') )
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment