Validate Email Address

Опубликовано: 22 Март 2026
на канале: Varshitha Education
1,467
27

Join this channel to get access to perks:
   / @varshithaeducation  

Today Date and Time Video
   • When user opens the form then display curr...  

Validate Email Address Script:

var emailField = g_form.getValue('u_email');
var email = emailField;

var emailRegex = /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}$/i;
if(!emailRegex.test(email))
{
alert('Invalid Email Format');
g_form.clearValue('u_email');
}