Check if valid email with RegExp in javascript
Posted on October 27, 2021
Here the script I use when I need to enable/disable the email submit button:
var patt = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,6}$/g
const isValid = email.match(patt)
Posted on October 27, 2021
Here the script I use when I need to enable/disable the email submit button:
var patt = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,6}$/g
const isValid = email.match(patt)