Email validation using regular expression in jQuery

To validate user input for email-id it's very easy using regular expressions. Using regular expressions you do not need to write lengthy logical code in jQuery. Following are the steps to do the same.

  • Pass a string to RegExp or create a regex using the //syntax
  • Call regex.test(string)
So code would be...
jQuery(function () {
    $(".mail").keyup(function () {
        var VAL = this.value;

        var email = new RegExp('^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$');

        if (email.test(VAL)) {
            alert('Great, you entered an valid E-Mail-address');
        }
    });
});

Comments

Popular posts from this blog

I have created an application to extract text from image using AI

Angular User Session Timeout example step by step

Create Chat bot application using Python, Streamlit and Gemini AI

Implement Logging in CSV file using Nlog in .net core MVC application- part 2

Understanding the Singleton Design Pattern in C#