DEMO: http://aseptik.net/demo/allowing-just-numeric-text-on-input-text-field/
jQuery.fn.onlyDigits = function() {
var k;
// little trick just in case you want use this:
$('<span></span>').insertAfter(this);
var $dText = $(this).next('span').hide();
// Really cross-browser key event handler
function Key(e) {
if (!e.which && ((e.charCode ||
e.charCode === 0) ? e.charCode: e.keyCode)) {
e.which = e.charCode || e.keyCode;
} return e.which; }
return $(this).each(function() {
$(this).keydown(function(e) {
k = Key(e);
return (
// Allow CTRL+V , backspace, tab, delete, arrows,
// numbers and keypad numbers ONLY
( k == 86 && e.ctrlKey ) || (k == 224 && e.metaKey) || k == 8 || k == 9 || k == 46 || (k >= 37 && k <= 40 && k !== 32 ) || (k >= 48 && k <= 57) || (k >= 96 && k <= 105));
}).keyup(function(e) {
var value = this.value.replace(/\s+/,'-');
// Check if pasted content is Number
if (isNaN(value)) {
// re-add stored digits if CTRL+V have non digits chars
$(this).val($dText.text());
} else { // store digits only of easy access
$dText.empty().append(value);
}
});
});
};
USAGE:
$("#onlydigits").onlyDigits();
NOTES:
After a bit of research i found that MAC Control key (CTRL) is not used to copy/paste/etc they use touch Command;
With FireFox, with Command + v and Command + z, keyCode returns 224
and the touch command is considered a metaKey; now somewhere i have read that this metaKey behaves like a ctrlKey for IE but since i can't test it i have used e.metaKey
so i'm still not sure if this will work, but you must try! ;-)
key event handler REFERENCES:
-45? – scunliffe May 25 '10 at 10:46a-zto0-9? – dev-null-dweller Jun 6 '10 at 21:27