I've regular expression to validate the email address as below
var reg = /^([A-Za-z0-9_\-\+\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
please help me to validate the entered email so that the input box should accept all special characters listed below.
.!#$%^&*-=_+{}|/?`
thanks in advance