How can an email address be validated in Javascript?
Though this solution may be simple, I'm sure this is one of those useful things that people will be Googling for and deserves its own entry on the site
|
How can an email address be validated in Javascript? Though this solution may be simple, I'm sure this is one of those useful things that people will be Googling for and deserves its own entry on the site |
|||||||||||||||||||||
|
|
Using Regular Expressions is probably the best way. Here's an example (live demo):
But keep in mind that one should not rely only upon JavaScript validation. JavaScript can easily be disabled. This should be validated on the server side as well. |
|||||||||||||||||||||
|
|
There's something you have to understand the second you decide to use a regular expression to validate emails: It's probably not a good idea. Once you have come to terms with that, there are many implementations out there that can get you halfway there, this article sums them up nicely. In short, however, the only way to be absolutely, positively sure that what the user entered is in fact an email is to actually send an email and see what happens. Other than that it's all just guesses. |
|||||||||||||||||||||
|
|
Just for completeness, here you have another RFC 2822 compliant regex
* Emphasis mine |
|||||||||||||
|
|
I've slightly modified Jaymon's answer for people who want really simple validation in the form of: anystring@anystring.anystring The regex:
Example javascript function:
(The reason I'm not using the accepted answer is that Chrome was giving syntax errors when I tried to use it). |
|||||||||||||||||||
|
|
Wow, lots of complexity here, if all you want to do is just catch the most obvious syntax errors, I would do something like this:
It usually catches the most obvious errors that the user makes and assures that the form is mostly right, which is what javascript validation is all about. |
|||||||||||||||
|
|
javascript can match regex:
Here's an RFC22 regular expression for emails:
|
||||
|
|
|
Correct validation of email address in compliance with the RFCs is not something that can be achieved with a one-liner regex. Here's a link to an article with the best solution I've found in PHP: http://www.dominicsayers.com/isemail/. Obviously, it has been ported to Java. I think the function is too complex to be ported and used in JavaScript. A good practice is to validate your data on the client but double-check the validation on the server. With this in mind, you can simply check whether a string looks like a valid email address on the client and perform the strict check on the server. Here's the JS function I use to check if a string looks like a valid mail address:
Explanation:
|
|||||||||||||
|
|
Don't validate, just send a confirmation email instead. |
|||||||||||||
|
|
HTML5 itself has email validation. if your browser support HTML5 then then you can use following code.
jsFiddle link |
|||||||||||
|
|
This was stolen from http://codesnippets.joyent.com/posts/show/1917
|
|||||||||||||||
|
|
There is a good example at http://techtamasha.com/?p=47 |
|||
|
|
|
In modern browsers you can build on top of @Sushil's answer with pure JavaScript and the DOM:
I've put together an example in this fiddle: http://jsfiddle.net/boldewyn/2b6d5/. If you combine this with a Modernizr feature detection, it frees you from the RegEx massacre. |
|||||||
|
|
Here is a very good discussion about using regular expressions to validate email addresses; "Comparing E-mail Address Validating Regular Expressions" Here is the current top expression, that is JavaScript compatible, for reference purposes:
|
|||||||
|
|
Use Google's own solution from their Closure library. Very easy to integrate. http://www.sbrian.com/2011/01/javascript-email-address-validation.html |
|||
|
|
|
Apparently, that's it:
Taken from http://fightingforalostcause.net/misc/2006/compare-email-regex.php on Oct 1 '10. But, of course, that's ignoring internationalization. |
|||||
|
|
|
It's hard to get an email validator 100% correct. The only really way to get it correct would be to send a test email to the account. That said, there are a few basic checks that can help make sure that you're getting something reasonable. Some things to improve: Instead of new RegExp, just try writing the regexp out like this:
Second, check to make sure that a period comes after the @ sign, and make sure that there are characters between the @s and periods. |
|||
|
|
|
Do this (case insensitive)
Why? It's based on RFC 2822, which is a standard ALL email addresses MUST adhere to. Here's an example of it being use in JavaScript
Note: Technically some emails can include quotes in the section before the @ symbol with escape characters inside the quotes (so you're email user can be obnoxious and contain stuff like @ and "... as long as it's written in quotes) NOBODY DOES THIS EVER. It's obsolete. But, it IS included in the true RFC 2822 standard, and omitted here. |
||||
|
|
|
You should not use reg-exp to validate an input string to check if it's an email. It's too complicated and would not cover all the cases. Now since you can only cover 90% of the cases why not writing something like:
You can refine it. For instance 'aaa@' it's valid. but overall you get the gist. and don't get carried away... a simple 90% solution is better than 100% solution that does not work. |
|||||||||||||||||||
|
|
Sectrean's solution works great but it was failing my linter. So i added some escapes.
|
|||
|
|
|
In contrast to squirtle here is a complex solution but does a mighty fine job of validating emails properly:
Use like so:
|
|||||
|
|
This is the correct RFC822 version.
|
|||
|
My knowledge of regex is not that good. That's why I check the general syntax with a simple regex first, and check more specific options with other functions afterwards. This may not be not the best technical solution, but this way I'm way more flexible and faster. The most common errors I've come across are spaces (especially at the beginnging and end) and occasionally a double dot.
|
||||
|
|
it return true if email address is valid otherwise it will return false |
|||
|
|
|
|||||||
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.