Day 2

Email

jQuery Validation

Email Validation Regex

03

There are two types of validations

1. Client Side
2. Server Side

Client-side validation is faster than server-side validation.

Types of validation

04

- Letters (A-Z and a-z)
- Digits (0-9)
- Hyphens
- Dots
- Not Allow - ! # $ % & ' * + - / = ? ^ _ ` { | } ~

Email ADDress Contain

jQuery is used to validate form data on the client-side server. we will check three parts of the email address, the first part is a user name after @ symbol and domain name

5 REgular Expression

05

Click Here