Email Confirmation Form Field

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top