Skip to content

Instantly share code, notes, and snippets.

@raco
Created May 24, 2017 02:43
Show Gist options
  • Save raco/7587b42b65d4220b30a8482b83650630 to your computer and use it in GitHub Desktop.
Save raco/7587b42b65d4220b30a8482b83650630 to your computer and use it in GitHub Desktop.
Validate only numbers
var last = '';
var telefono = document.getElementById('telefono');
telefono.addEventListener('input', function(e){
if (isNaN(e.target.value))
e.target.value=last;
else
last=e.target.value;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment