Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was using Jquery Numeric plugin but I found that is not working on FireFox 3.6 on Osx (does not allow pasting).

I'm searching a Jquery plugin or Javascript snippet that allows just Numeric Text on an Input Text field.
I have the following requirements:

  1. Should allow just numeric text
  2. Should NOT allow punctuation (.,)
  3. Should NOT allow dashed text (-)
  4. Should allow pasting just for numeric text
  5. Multibrowser
  6. Multiplatform
share|improve this question
you may find this usefull stackoverflow.com/questions/995183/… – aSeptik May 25 '10 at 10:45
are dashes allowed? e.g. -45? – scunliffe May 25 '10 at 10:46
@scunliffe added in the requirements. – systempuntoout May 25 '10 at 11:00
1  
How about stackoverflow.com/questions/2980038/… with changing a-z to 0-9? – dev-null-dweller Jun 6 '10 at 21:27
@dev-null-dweller it worked thanks. – systempuntoout Jun 16 '10 at 7:37

3 Answers

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:

share|improve this answer
Good job, it does not work with Firefox 3.6 on OSX. – systempuntoout May 25 '10 at 17:50
i can't test it bro! i don't have a MAC and I'll never have one! ;-) can you tell me what exactly doesn't work!? grazie! ;-) – aSeptik May 25 '10 at 19:53
It does not allow pasting.Grazie a te :). – systempuntoout May 26 '10 at 8:15
ok, updated one more time, now it use e.ctrlKey instead of key code 17, not sure, but it should work as expected! let me know! – aSeptik May 26 '10 at 9:09
it does not work :(,same problem.+1 for the effort :). – systempuntoout May 26 '10 at 19:51
show 7 more comments
up vote 4 down vote accepted

Thanks to dev-null-dweller i have resolved with this script:

jQuery('#input').bind('keyup blur',function(){ 
   jQuery(this).val( jQuery(this).val().replace(/[^0-9]/g,'') ); }
);
share|improve this answer
+1 very cute and fast! ;) – aSeptik Jun 25 '10 at 9:37
1  
Came here to share almost the same thing; except that I used "\d" instead of [0-9]. :P – Hugo Jul 26 '12 at 16:23

Thanks systempuntoout.. I've fixed this with following script

$('#input').keyup( function() {
  var $this = $(this);
  $this.val($this.val().replace(/[^\d.]/g, ''));     
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.