Created
May 10, 2012 18:29
-
-
Save Chavao/2654905 to your computer and use it in GitHub Desktop.
Force numeric only
This file contains hidden or 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
jQuery.fn.ForceNumericOnly = function() { | |
return this.each(function() | |
{ | |
$(this).keydown(function(e) | |
{ | |
var key = e.charCode || e.keyCode || 0; | |
// allow backspace, tab, delete, arrows, ctrl + a, numbers and keypad numbers ONLY | |
return ( | |
key == 8 || | |
key == 9 || | |
key == 46 || | |
(key >= 37 && key <= 40) || | |
(key >= 48 && key <= 57) || | |
(key == 65 && e.ctrlKey === true) || | |
(key >= 96 && key <= 105)); | |
}); | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment