Simple Email Validator Using JavaScript

In this code we will try to create a Simple Email Validator using JavaScript. The program will intentionally validate the email if it can be use as an Email ID. You are free to use these code, and apply it to your working projects. To learn more about this, just follow the steps below.

Getting started:

First you have to download bootstrap framework, this is the link for the bootstrap that I used for the layout design https://getbootstrap.com/.

The Main Interface

This code contains the interface of the application. To create this just write these block of code inside the text editor and save this as index.html.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" name="viewport" content="width=device-width ,initial-scale=1"/>
  5. <link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
  6. </head>
  7. <head>
  8. <nav class="navbar navbar-default">
  9. <div class="container-fluid">
  10. <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  11. </div>
  12. </nav>
  13. </head>
  14. <div class="col-md-3"></div>
  15. <div class="col-md-6 well">
  16. <h3 class="text-primary">Simple Email Validator Using JavaScript</h3>
  17. <hr style="border-top:1px dotted #ccc;"/>
  18.  
  19. <div class="col-md-4">
  20. <form>
  21. <div class="form-group">
  22. <label>Enter email:</label>
  23. <input type="text" class="form-control" id="email" />
  24. </div>
  25. <center><button type="button" class="btn btn-primary" onclick="checkEmail();">Validate</button></center>
  26. <div id="result"></div>
  27. </form>
  28. </div>
  29. </div>
  30. <script src="js/script.js"></script>
  31. </body>
  32. </html>

Creating the Script

This code contains the script of the application. The code will manually check whether the email can be use. To do this just copy and write these block of codes inside the text editor, then save it as script.js inside the js folder.
  1. function checkEmail(){
  2. var email=document.getElementById('email').value;
  3.  
  4. if(email==""){
  5. alert("Please enter something first!");
  6. }else{
  7. var emailValidate=/^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/i;
  8. if(emailValidate.test(email)){
  9. document.getElementById('result').innerHTML="<center><h5 class='text-success'>Email validated!</h2></center>";
  10. }else{
  11. document.getElementById('result').innerHTML="<center><h5 class='text-danger'>Email verification failed!</h2></center>";
  12. }
  13. }
  14. }
There you have it we successfully created a Simple Email Validator using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

Add new comment