I\'m trying to create a validation for a password field which allows only the a-zA-Z0-9 characters and .!@#$%^&*()_+-=
a-zA-Z0-9
.!@#$%^&*()_+-=
I can\'t seem to
// Regex for special symbols var regex_symbols= /[-!$%^&*()_+|~=`{}\[\]:\/;<>?,.@#]/;