Last active
December 16, 2015 22:09
-
-
Save fdaciuk/5504632 to your computer and use it in GitHub Desktop.
Somente números com jQuery
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
$(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