Backspace/Delete not working in Mozilla Firefox for Jquery alphanumeric validation .
<input type="text" id="myTextBox" />
$("#myTextBox").bind("keypress", function(event) {
var charCode = event.which;
var keyChar = String.fromCharCode(charCode);
return /[a-zA-Z0-9]/.test(keyChar);
});