Answers for "allow only numerics and few alphabets in input type js"

0

allow only numerics and few alphabets in input type js

function allowAlphaNumericSpace(thisInput) {
  thisInput.value = thisInput.value.split(/[^AN0-9/]/).join('');
}
Posted by: Guest on March-31-2021

Code answers related to "allow only numerics and few alphabets in input type js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language