JavaScript - Validate Email Value
Submitted by razormist on Tuesday, December 10, 2019 - 09:08.
In this tutorial we will create a Validate Email Value using JavaScript. This code will dynamically validate the email input when user submit the value in the textbox. The code itself use onclick() to call a function that will validate the email if it can be use as a username. This code is free to use, you can modify it as your own,
We will be using JavaScript as a server-side scripting language because It allows greater control of your web page behavior than HTML alone. It is embedded in HTML that responsible to allow user to interact with the computer .
There you have it we successfully created a Validate Email Value 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 class="col-md-8">
- </div>
- </div>
- </body>
- </html>
Creating the Script
This code contains the script of the application. This code will automatically validate the email input when the the button is click. 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 validateEmail(){
- 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><h2 class='text-success'>This email can be use!</h2></center>";
- }else{
- document.getElementById('result').innerHTML="<center><h2 class='text-danger'>This email cannot be use!</h2></center>";
- }
- }
- }
Add new comment
- 82 views