js only allow numbers and letters code example
Example: allow only numerics and few alphabets in input type js
function allowAlphaNumericSpace(thisInput) {
thisInput.value = thisInput.value.split(/[^AN0-9/]/).join('');
}
function allowAlphaNumericSpace(thisInput) {
thisInput.value = thisInput.value.split(/[^AN0-9/]/).join('');
}