Any quick way to set an HTML text input (<input type=text />) to only allow numeric keystrokes(plus '.')?

link|improve this question

80% accept rate
8  
Many solutions here only work when keys are pressed. These will fail if people paste text using the menu, or if they drag and drop text into the text input. I've been bitten by that before. Be careful! – Bennett McElwee Jan 24 '11 at 21:09
if you do the validation on keyup event, pasting of the user will be validated because auf de keyup of the "v" - key ... – haemse Apr 14 '11 at 9:06
@haemse - Not if you use the mouse to paste. – VirtuosiMedia Sep 30 '11 at 21:33
I suppose in that case, you will need server-side validation to complement the client javascript – Julius A Oct 3 '11 at 11:16
5  
@JuliusA - you always always need server-side validation anyway. – Stephen P Nov 23 '11 at 1:57
feedback

22 Answers

up vote 17 down vote accepted

I've used this, it's okay

http://www.javascript-coder.com/html-form/javascript-form-validation.phtml

link|improve this answer
1  
Very useful link, +1 I will accept this solution thanks for the other suggestions below guys – Julius A Jan 22 '09 at 15:05
feedback

Use this DOM

<input type='text' onkeypress='validate(event)' />

And this script

function validate(evt) {
  var theEvent = evt || window.event;
  var key = theEvent.keyCode || theEvent.which;
  key = String.fromCharCode( key );
  var regex = /[0-9]|\./;
  if( !regex.test(key) ) {
    theEvent.returnValue = false;
    if(theEvent.preventDefault) theEvent.preventDefault();
  }
}
link|improve this answer
5  
german-settings on an eeepc 900. some key's for good usabiliy do not work: - backspace (keyCode: 8) - navigation key left and right (keyCode: 37, 38) copy and paste is also possible... – michl86 Sep 10 '09 at 18:24
so modify per locale; same idea still works. – geowa4 Sep 10 '09 at 19:11
2  
change to if (theEvent.preventDefault) theEvent.preventDefault(); as it's not supported by all browsers – pstanton Oct 24 '09 at 1:25
3  
Most people do care, having a script error show up reflects poorly on your site. – Robert Jeppesen Apr 26 '10 at 21:37
2  
few problems with this code. You can enter . more than one time, second it does not allow delete key, any solution? – coure2011 May 16 '11 at 11:09
show 4 more comments
feedback

HTML5 has <input type=number>, which sounds right for you. Currently, only Opera supports it natively, but there is a project that has a JavaScript implementation.

link|improve this answer
feedback

2 solutions:

Use a form validator (for example with jQuery validation plugin)

Do a check during the onblur (i.e. when the user leaves the field) event of the input field, with the regular expression:

<script type="text/javascript">
function testField(field) {
    var regExpr = new RegExp("^\d*\.?\d*$");
    if (!regExpr.test(field.value)) {
      // Case of error
      field.value = "";
    }
}

</script>

<input type="text" ... onblur="testField(this);"/>
link|improve this answer
1  
Escape . with \. – AnthonyWJones Jan 22 '09 at 16:12
Interestingly, I had to give the regex is "^\\d\\.?\\d*$", but that might be because the page is run through an XSLT transform. – Paul Tomblin Apr 22 '10 at 15:04
feedback

I've searched long and hard for a good answer to this, and we desperately need <input type="number", but short of that, these 2 are the most concise ways I could come up with:

<input type="text" 
       onkeyup="this.value=this.value.replace(/[^\d]/,'')">

If you dislike the non-accepted character showing for a split-second before being erased, the method below is my solution. Note the numerous additional conditions, this is to avoid disabling all sorts of navigation and hotkeys. If anyone knows how to compactify this, let us know!

<input type="text" 
onkeydown="return ( event.ctrlKey || event.altKey 
                    || (47<event.keyCode && event.keyCode<58 && event.shiftKey==false) 
                    || (95<event.keyCode && event.keyCode<106)
                    || (event.keyCode==8) || (event.keyCode==9) 
                    || (event.keyCode>34 && event.keyCode<40) 
                    || (event.keyCode==46) )">
link|improve this answer
1  
input type="number" is coming in HTML 5 - and you could use JavaScript as a fall-back polyfill... stevefenton.co.uk/Content/Blog/Date/201105/Blog/… – Sohnee May 23 '11 at 23:06
1  
Good method but can be broken by pressing and holding a non-acceptable key – Scott Brown Nov 16 '11 at 16:24
Yup, this solution doesn't work when holding down a non-number key. – jinsungy Feb 3 at 4:18
1  
Change the regex to /[^\d+]/ and it works with holding down – boecko Apr 24 at 17:01
feedback

And one more example, which works great for me:

function validateNumber(event) {
    var key = window.event ? event.keyCode : event.which;

    if (event.keyCode == 8 || event.keyCode == 46
     || event.keyCode == 37 || event.keyCode == 39) {
        return true;
    }
    else if ( key < 48 || key > 57 ) {
        return false;
    }
    else return true;
};

Also attach to keypress event

$(document).ready(function(){
    $('[id^=edit]').keypress(validateNumber);
});

And html:

<input type="input" id="edit1" value="0" size="5" maxlength="5" />
link|improve this answer
this worked great for me as well, nice work – markiyanm Aug 25 '10 at 19:31
Worked great thanks! :) – Mantisimo Dec 14 '10 at 12:33
feedback

If you want to suggest to the device(maybe a mobile phone) between alpha or numeric you can use <input type="number">

link|improve this answer
feedback

A short and sweet implementation using jQuery and replace() instead of looking at event.keyCode or event.which:

$('input.numeric').live('keyup', function(e) {
  $(this).val($(this).val().replace(/[^0-9]/g, ''));
});

Only small side effect that the typed letter appears momentarily and CTRL/CMD + A seems to behave a bit strange.

link|improve this answer
feedback

HTML5 supports regexes, so you could use this:

<input id="numbersOnly" pattern="[0-9.]+" type="text">

Warning: Some browsers don't support this yet.

link|improve this answer
3  
HTML5 also has <input type=number>. – Mathias Bynens Oct 18 '11 at 9:30
True. You should make this an answer. Ooops, @Ms2ger already has. – james.garriss Dec 1 '11 at 15:59
feedback

this is an improved function :

function validateNumber(evt) {
  var theEvent = evt || window.event;
  var key = theEvent.keyCode || theEvent.which;
  if ((key < 48 || key > 57) && !(key == 8 || key == 9 || key == 13 || key == 37 || key == 39 || key == 46) ){
    theEvent.returnValue = false;
    if (theEvent.preventDefault) theEvent.preventDefault();
  }
}
link|improve this answer
feedback

if you just want to only allow numbers 0-9 on a input, you can just remove all non numeric characters, without messing about charCodes and arrows ctrl and others kinds of keyboars, and this fix a string pasted or draged to a input.

this have a advantage that you don't have to worry about browser messy of keyEvents. you can use this to allow letters and -,. but this cant deal with valid numbers like (0.1.4- is not a integer nor float), in this case this others guys solutions is better.

LIVE DEMO

<input type="text" id="number" size="100" value="type a number here">

Javascript

addEvent(document.getElementById('number'),'keyup',validate);
addEvent(document.getElementById('number'),'mouseover',validate);

function validate(event){   
    var charsAllowed="0123456789";
    var allowed;
    for(var i=0;i<this.value.length;i++){       
        allowed=false;
        for(var j=0;j<charsAllowed.length;j++){
            if( this.value.charAt(i)==charsAllowed.charAt(j) ){ allowed=true; }
        }
        if(allowed==false){ this.value = this.value.replace(this.value.charAt(i),""); i--; }
    }
    return true;
}

yes, regex is less work but not faster than this.

link|improve this answer
feedback

You may try using the '''onkeydown''' event and cancel the event (event.preventDefault or something like that) when it's not one of the allowed keys.

link|improve this answer
feedback

Remember the regional differences (Euros use periods and commas in the reverse way as Americans), plus the minus sign (or the convention of wrapping a number in parentheses to indicate negative), plus exponential notation (I'm reaching on that one).

link|improve this answer
Continental Europeans do, anyway. In the UK, and here in Ireland, we use commas and decimal points the same way you do for numbers. Indeed, I think this use of commas and decimal points is common to the entire English-speaking world. – TRiG Jul 1 '10 at 14:58
feedback

wow everybody sends most important information. Thanks for sharing

<html>
<head>
<script>
function IsEmpty(aTextField)
{
 if((aTextField.value.length==0) || (aTextField.value==null)) {return true;}
 else{return false;}
 }
function IsNumeric(sText)
{
 var ValidChars = "0123456789.";
 var IsNumber=true;
 var Char;
 for(i=0;i<sText.length&&IsNumber==true;i++)
 {
  Char=sText.charAt(i);
  if(ValidChars.indexOf(Char)==-1){IsNumber=false;}
  }
 return IsNumber;
 }
function ValidateForm()
{
 if(IsEmpty(document.getElementById("account_number")))
 {
  alert('You have not entered an account number')
  document.getElementById("account_number").focus();
  return false;
  }
 if(!IsNumeric(document.getElementById("account_number").value))
 {
  alert('Please enter only numbers or decimal points in the account field')
  document.getElementById("account_number").focus();
  document.getElementById("account_number").select();
  return false;
  }
 return true;
 }
</script>
</head>
<body>
<form name="form1" action="#" method="post" onsubmit="return ValidateForm()">
 Account Number: <input type="text" id="account_number" name="account_number">
 <br />
 <input type="submit" value="Submit">
</form>
</body>
</html>
link|improve this answer
feedback

You can attach to the key down event and then filter keys according to what you need, for example:

<input id="FIELD_ID" name="FIELD_ID" onkeypress="return validateNUM(event,this);"  type="text">

And the actual javascript handler would be:

function validateNUM(e,field)
{
    var key = getKeyEvent(e)
    if (specialKey(key)) return true;
    if ((key >= 48 && key <= 57) || (key == 46)){ 
        if (key != 46)
            return true;
        else{  
            if (field.value.search(/\./) == -1 && field.value.length > 0) 
                return true;
            else 
                return false;
        }       
    }

function getKeyEvent(e){
    var keynum
    var keychar
    var numcheck
    if(window.event) // IE
        keynum = e.keyCode
    else if(e.which) // Netscape/Firefox/Opera
        keynum = e.which
    return keynum;
}
link|improve this answer
feedback

Best for me (with jquery) http://www.itgroup.com.ph/alphanumeric/

link|improve this answer
Not good for decimals because it doesn't prevent "123.456.789" – Greg Nov 8 '10 at 15:48
It does, see the first example (follow the link I provided). The second example let you type '.' and ','. Up to you. – Aurelien Nov 9 '10 at 10:44
What I mean is there's no way to only type "123.34", the user would be allowed to type as many periods as they want. – Greg Nov 17 '10 at 14:12
feedback

You can also compare input value (which is treated as string by default) to itself forced as numeric, like:

if(event.target.value == event.target.value * 1) {
    // returns true if input value is numeric string
}

However, you need to bind that to event like keyup etc.

link|improve this answer
feedback

Just an other variant with jQuery using

$(".numeric").keypress(function() {
    return (/\d/.test(String.fromCharCode(event.which) ))
});
link|improve this answer
feedback

You can replace the Shurok function with:

$(".numeric").keypress(function() {
    return (/[0123456789,.]/.test(String.fromCharCode(Event.which) ))
});
link|improve this answer
feedback

I realize an old post but i thought this could help someone. Recently I had to limit a text box to just 5 decimal places. In my case ALSO the users input had to be less than 0.1

<input type="text" value="" maxlength=7 style="width:50px" id="fmargin" class="formText"  name="textfield" onkeyup="return doCheck('#fmargin',event);">

Here is the doCheck function

function doCheck(id,evt)
{
    var temp=parseFloat($(id).val());

    if (isNaN(temp))
        temp='0.0';
    if (temp==0)
        temp='0.0';

    $(id).val(temp);
}

Here is the same function except to force integer input

function doCheck(id,evt)
{
    var temp=parseInt($(id).val());

    if (isNaN(temp))
        temp='0';

    $(id).val(temp);
}

hope that helps someone

link|improve this answer
feedback

Javascript code:

function validate(evt)

 {

  if(evt.keyCode!=8)

  {

  var theEvent = evt || window.event;

  var key = theEvent.keyCode || theEvent.which;

  key = String.fromCharCode( key );


  var regex = /[0-9]|\./;

  if( !regex.test(key) )
 {

    theEvent.returnValue = false;

    if(theEvent.preventDefault) theEvent.preventDefault();

  }

  }

}

HTML code:

<input type='text' name='price' value='0' onkeypress='validate(event)'/>

works perfectly because backspace keycode is 8 and regex expression doesnt let it so its a easy way to bypass the bug :)

link|improve this answer
feedback

Thanks guys this really help me!

I found the perfert one really useful for database.

function numonly(root){
    var reet = root.value;    
    var arr1=reet.length;      
    var ruut = reet.charAt(arr1-1);   
        if (reet.length > 0){   
        var regex = /[0-9]|\./;   
            if (!ruut.match(regex)){   
            var reet = reet.slice(0, -1);   
            $(root).val(reet);   
            }   
        }  
 }

Then add the eventhandler:

onkeyup="numonly(this);"
link|improve this answer
not working for me. – Web_Designer Jun 17 '11 at 6:58
feedback

Your Answer

 
or
required, but never shown

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