Skip to content

Instantly share code, notes, and snippets.

@donpandix
Created January 26, 2016 15:19
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 donpandix/d36a1622046812a47a45 to your computer and use it in GitHub Desktop.
Save donpandix/d36a1622046812a47a45 to your computer and use it in GitHub Desktop.
Permisos para ingresar número solamente en un campo de texto haciendo uso de la librería JQuery
$(".solo-numero").keyup(function(){
if ($(this).val() != '')
$(this).val($(this).attr('value').replace(/[^0-9]/g, ""));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment