Modify ↓
Ticket #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: | |
| Blocking: | Blocked by: |
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."));
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

The current email validation does not mark "@" as valid.