Skip to content

Instantly share code, notes, and snippets.

@jandrodev
Created June 18, 2015 15:38
Show Gist options
  • Save jandrodev/a641afc44a68c00b1180 to your computer and use it in GitHub Desktop.
Save jandrodev/a641afc44a68c00b1180 to your computer and use it in GitHub Desktop.
Función para introducir sólo números.
function validaSoloNumeros() {
if ((event.keyCode < 48) || (event.keyCode > 57))
event.returnValue = false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment