Simple Email Validator Using JavaScript
Submitted by razormist on Friday, July 24, 2020 - 09:31.
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.
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!
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.- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" name="viewport" content="width=device-width ,initial-scale=1"/>
- <link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
- </head>
- <body>
- <head>
- <nav class="navbar navbar-default">
- <div class="container-fluid">
- </div>
- </nav>
- </head>
- <div class="col-md-6 well">
- <hr style="border-top:1px dotted #ccc;"/>
- <div class="col-md-4">
- <form>
- <div class="form-group">
- <input type="text" class="form-control" id="email" />
- </div>
- </form>
- </div>
- </div>
- </body>
- </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.- function checkEmail(){
- var email=document.getElementById('email').value;
- if(email==""){
- alert("Please enter something first!");
- }else{
- 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;
- if(emailValidate.test(email)){
- document.getElementById('result').innerHTML="<center><h5 class='text-success'>Email validated!</h2></center>";
- }else{
- document.getElementById('result').innerHTML="<center><h5 class='text-danger'>Email verification failed!</h2></center>";
- }
- }
- }
Add new comment
- 307 views