Hi, Please can someone have a look at this: if (form.email.value == form.confirm_email.value) { alert( "Please make sure your email address matches" ); form.confirm_email.focus(); return false ; } Code (markup): It seems to come up as false every time even though the emails match. Is the code wrong? Cheers, Adam
Maybe this is the correct one if (form.email.value != form.confirm_email.value) { alert( "Please make sure your email address matches" ); form.confirm_email.focus(); return false ; } PHP:
he asked me to arrange 50 back links for his site for 75$ after i arranged 35 links and after this he asked me to stop work and refuse to pay.
A bit logical. But do you understand what he changed? something == something They match^ something != something They don't match^
JAvascript has != for checking IS NOT if (document.form.email.value != document.form.confirm_email.value) { alert( "Please make sure your email address matches" ); form.confirm_email.focus(); return false ;}