Skip to content

Instantly share code, notes, and snippets.

@fdaciuk
Last active December 16, 2015 22:09
Show Gist options
  • Save fdaciuk/5504632 to your computer and use it in GitHub Desktop.
Save fdaciuk/5504632 to your computer and use it in GitHub Desktop.
Somente números com jQuery
$(function() {
// Somente números
$( 'input.numero' ).on( 'keydown', function(e) {
var keyCode = e.keyCode || e.which,
pattern = /\d/,
// Permite somente Backspace, Delete e as setas direita e esquerda, números do teclado numérico - 96 a 105 - (além dos números)
keys = [ 46, 8, 9, 37, 39, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105 ];
if( ! pattern.test( String.fromCharCode( keyCode ) ) && $.inArray( keyCode, keys ) === -1 ) {
return false;
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment