I have a working form that can be found at:
I should be thankful it is working. What I am wanting to do is make sure the email field and the confirm email match before form can be submitted. At this time the person can put two different emails. I have this snippet of code but I have no idea if it will work or where to put it.
if (d.email.value!=dc.value) { alert("Your email and Confirm emaildoesn't match.."); d.cemail.value=""; d.cemail.focus(); return false; }
I tried inserting in my form code using dreamweaver but did not work. Maybe I put it in the wrong place.
Thanks for any help I might receive. I am code challenged!
I should be thankful it is working. What I am wanting to do is make sure the email field and the confirm email match before form can be submitted. At this time the person can put two different emails. I have this snippet of code but I have no idea if it will work or where to put it.
if (d.email.value!=dc.value) { alert("Your email and Confirm emaildoesn't match.."); d.cemail.value=""; d.cemail.focus(); return false; }
I tried inserting in my form code using dreamweaver but did not work. Maybe I put it in the wrong place.
Thanks for any help I might receive. I am code challenged!
Comment