Opened 13 years ago
Closed 13 years ago
#2293 closed enhancement (worksforme)
[validate]
Reported by: | Hum4ngus | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.2.3 |
Component: | plugin | Version: | 1.2.2 |
Keywords: | [validate] | Cc: | |
Blocked by: | Blocking: |
Description
I've made a new email validation. This because the standard one only has to contain a @, this one accepts the format "user@…".
jQuery.validator.addMethod("email2", function(value) { return /^[a-zA-Z0-9._%-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/.test( value ); }, String.format("Please enter a valid email adres."));
Note: See
TracTickets for help on using
tickets.
The current email validation does not mark "@" as valid.