I am developing an HTML page with many textfields like userid and username, I have added a javascript code like this in separate .js file
function CommonKeyPressIsAlpha(evt){
var charCode = (evt.which) ? evt.which : event.keyCode
if ((charCode > 64 && charCode < 91) || (charCode > 96 && charCode < 123)){
document.getElementById("errordisp").innerHTML = "";
return true;
}else{
document.getElementById("errordisp").innerHTML = "Please enter a valid name!";
return false;
}
}
Whenever user types in username text field, I am calling this function to validate that user types only characters. I am calling this function in username text fields:
onkeypress="return CommonKeyPressIsAlpha(evt);"
It works fine in chrome but not in firefox and in IE, Whats the problem?