How I can add multiple alphanumeric characters. In regular expression we use [a-zA-z0-9 ]+
, +
signifies you can add atleast one alphanumeric. So, how I can achieve this through mask i.e. adding multiple alphanumeric characters.
I have tried the following:
jQuery('.alphanumeric-field').mask('A')