Email validation regular expression in javascript

email
validation
regex

The html code is

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<form>
  <p>Enter email:</p>
  <input id='email'>
  <button type='submit' onclick='validateEmail()'>Check Email</button>
</form>

Now when the button is clicked then the JavaScript function validateEmail() will be called. The bellow code in this function. Using regular expressions is probably the best way.

function validateEmail(){
   var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
   var email = document.getElementById('email').value;

   if (reg.test(email) == false) 
   {
      alert("Invalid Email Address");
      return false;
   }
}

 

 

 

You might also like:

Check null values in JavaScript?

04-02-2019 JavaScript null check null value

How To Get Your Blogs Posts Using Blogger API

30-07-2017 blogger api json php

Navigate to another page using java script

06-03-2017 javascript redirection navigation

Filter for replace text in Angular Js

05-03-2017 filter replace angular js

How to set or update or push the values into Object in javacript

27-02-2017 javascript set update push object