Skip to content

Instantly share code, notes, and snippets.

@adanzilla
Created August 6, 2015 15:06
Show Gist options
  • Save adanzilla/ea0f2c62b8eb8c253fce to your computer and use it in GitHub Desktop.
Save adanzilla/ea0f2c62b8eb8c253fce to your computer and use it in GitHub Desktop.
jQuery - Validación acepta solo numeros
jQuery('.solo_numeros').keyup(function(e){
if (/\D/g.test(this.value)){this.value = this.value.replace(/\D/g, '');}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment