confirm email script

2005-02-28 Thread Phil Broussard
Can someone help me with a javascript that will compare two email addresses? It needs to make sure they are the same. If they are the page goes ahead and submits. If not the page gets an alert and the page does not get submitted. I've found a few things but none of them do what I want. Thanks

Re: confirm email script

2005-02-28 Thread Jeffry Houser
: confirm email script From: Phil Broussard [EMAIL PROTECTED] Date: Mon, 28 Feb 2005 15:43:48 -0600 Thread: http://www.houseoffusion.com/cf_lists/index.cfm/method=messagesthreadid=16237forumid=5#148678 Can someone help me with a javascript that will compare two email addresses? It needs to make

Re: confirm email script

2005-02-28 Thread Howie Hamlin
I've used this in several apps and it works great: http://www.pengoworks.com/index.cfm?action=qForms HTH, Howie --- On Monday, February 28, 2005 4:43 PM, Phil Broussard scribed: --- Can someone help me with a javascript that will compare two email addresses? It needs to make sure they are

Re: confirm email script

2005-02-28 Thread Ben Doom
if (a == b) { submit(); } else { alert(what, you can't even type email?); } Am I missing something? YMMV, untested, etc --Ben Phil Broussard wrote: Can someone help me with a javascript that will compare two email addresses? It needs to make sure they are the same. If they are the page

Re: confirm email script

2005-02-28 Thread Phill B
I don't know why it wont work. I tried yours and Jeffery's but they wont work either. Screw 'em if they can't put their email in right . On Mon, 28 Feb 2005 17:10:34 -0500, Ben Doom [EMAIL PROTECTED] wrote: if (a == b) { submit(); } else { alert(what, you can't even type email?); } Am I