How Can I Use Javascript to Allow Only Numbers to Be Entered in a TextBox?
By
Steve on
Thursday, January 11, 2007
Updated
Friday, April 22, 2016
Viewed
786,502 times. (
2 times today.)
Here I show how to use Javascript to allow only numbers to be entered in a textbox. This is useful for phone numbers, IDs, ZipCodes, and, well, that's about it.
This solution works in both IE and Netscape/Mozilla.
Try it here! Just type in the text box below. Note that digits are allowed and alphabetic characters are not allowed. Observe, too, that arrow keys and backspace are allowed so that you can still edit what you type.
To filter out different keystrokes besides numbers check out my javascript keycode page.
Try It!
Example: Allow only numbers/digits in TextBox
<HTML>
<HEAD>
<SCRIPT language=Javascript>
<!--
function isNumberKey(evt)
{
var charCode = (evt.which) ? evt.which : event.keyCode
if (charCode > 31 && (charCode < 48 || charCode > 57))
return false;
return true;
}
//-->
</SCRIPT>
</HEAD>
<BODY>
<INPUT id="txtChar" onkeypress="return isNumberKey(event)" type="text" name="txtChar">
</BODY>
</HTML>