Created
May 24, 2017 02:43
-
-
Save raco/7587b42b65d4220b30a8482b83650630 to your computer and use it in GitHub Desktop.
Validate only numbers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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