Email validation is a crucial part of any application that requires user registration or input of email addresses. Validating email addresses ensures that the input data is accurate, which helps prevent spam, reduces errors, and ensures that messages are delivered to the correct recipients. In this article, we’ll explore how to validate email addresses in JavaScript using regular expressions and HTML5 input attributes.

Email Validation Using Regular Expressions

Regular expressions provide a powerful way to match and validate email address patterns. Let’s create a simple email validation function using a regular expression in JavaScript:

function isValidEmail(email) {

  const emailRegex = /^[azAZ09._%] @[azAZ09.] .[azAZ]{2,}$/;

  return emailRegex.test(email);

}

This function uses a regular expression (emailRegex) to define the pattern for a valid email address. The function then checks if the provided email address matches the pattern using the test() method. The function returns true if the email address is valid and false otherwise.

Usage:

Email Validation Using HTML5 Input Attributes

HTML5 provides a built-in way to validate email addresses using the input element’s type and pattern attributes:

  <label for=“email”>Email:

  <input type=“email” id=“email” name=“email” pattern=“[a-zA-Z0-9._% -][email protected][a-zA-Z0-9.-] .[a-zA-Z]{2,}$” required>

  <input type=“submit” value=“Submit”>

Here, the type attribute is set to “email”, which tells the browser to validate the input as an email address. The pattern attribute is used to enforce a custom email validation pattern (similar to the one in the JavaScript example). The required attribute ensures that the field must be filled out before submitting the form.

Adding Custom Validation Messages

You can add custom validation messages using the setCustomValidity() method:

document.getElementById(“email”).addEventListener(“input”, function() {

  const email = this.value;

  if (!isValidEmail(email)) {

    this.setCustomValidity(“Please enter a valid email address.”);

  } else {

    this.setCustomValidity(“”);

  }

});

This code snippet adds an event listener to the email input field. If the email address is not valid, a custom validation message is displayed using the setCustomValidity() method.

Server-Side Validation

While client-side validation is essential for a good user experience, it is crucial to validate user inputs on the server-side as well. This helps protect your application against malicious inputs and ensures data integrity.

A server-side validation solution depends on your back-end technology. Common server-side programming languages like PHP, Node.js, and Python have libraries or built-in functions for email validation.

Conclusion

In this article, we explored two ways to validate email addresses in JavaScript: using regular expressions and HTML5 input attributes. We also demonstrated how to add custom validation messages and highlighted the importance of server-side validation.

By validating email addresses in your application, you can reduce errors, prevent spam, and ensure that messages are sent to the correct recipients.