I have a numbered input field, in that field only the character 0-9 and decimal points(,) are legid. That piece of code is done. But now I want to give the inputfield a maximum length of 4.
function isNumberKey(evt){
var charCode = (evt.which) ? evt.which : event.keyCode;
if (charCode == 44){
return true;
} else if (charCode > 31 && charCode < 48 || charCode > 57){
return false;
} else{
return true;
}
}
You may try it with HTML like this: