Email Confirmation Form Field

J

Janine416

Is there a way to set up a form field that would confirm an email address
entered in another field? The confirmation field would need to refer to
another field and make sure it matches exactly.
 
J

Jens Peter Karlsen [FP MVP]

Yes, you would do that with Javascript.
Something like this:

function compareEmail(){
if (document.forms[0].fieldname1.value <>
document.forms[0].fieldname2.value)
do something
}

You can call the function with the onclick event on the submit button.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
 
Top