We can validate email address at client side and server side. To validate email address on client side, we can use java script with regular expression. Java script can check the regular expression pattern for valid email address. We have different regular expression patterns for validating email address. In this article, I am sharing some useful cross browsers regular expression patterns for validating email address with java script and jquery.
Below is simple regular expression to validate an email address. It will accept email address in upper case also.
<script type="text/javascript">
function validateEmail(email)
{
var reg = /^\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/
if (reg.test(email)){
return true; }
else{
return false;
}
}
</script> Below is regular expression to validate an email address with lower case chars.
<script type="text/javascript">
function validateCaseSensitiveEmail(email)
{
var reg = /^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$/;
if (reg.test(email)){
return true;
}
else{
return false;
}
}
</script> Below is regular expression to validate domain specific email address.
<script type="text/javascript">
function validateFreeEmail(email)
{
var reg = /^([\w-\.]+@(?!gmail.com)(?!yahoo.com)(?!hotmail.com)([\w-]+\.)+[\w-]{2,4})?$/
if (reg.test(email)){
return true;
}
else{
return false;
}
}
</script> <html>
<head>
<script type="text/javascript">
$(document).ready(function(e){
$('#btnSubmit').click(function(){
var email = $('#txtEmail').val();
if ($.trim(email).length == 0) {
alert('Please Enter Valid Email Address');
return false;
}
if (validateEmail(email)) {
alert('Valid Email Address');
return false;
}
else {
alert('Invalid Email Address');
return false;
}});
});
</script>
</head> <body>
Email Address: <input type="text" id="txtEmail"/><br/>
<input type="submit" id="btnSubmit" Value="Submit" />
</body>
</html> In this article I try to explain, how you can validate different-different email address acc. to your need. I hope after reading this article you will be able to use this trick in your code. I would like to have feedback from my blog readers. Please post your feedback, question, or comments about this article.