RE: Submitting a form only once, iow, preventing impatient user d ouble clicks.

2002-04-18 Thread Ryan Pieszak
Just a side note... I just joined this list a few days ago, and I have to agree with Charles in saying that the response time and actual helpfulness on this list is top-notch. I tip my hat to all of you. Ryan Pieszak -Original Message- From: Charles Nahm [mailto:[EMAIL PROTECTED]] Sent:

RE: Submitting a form only once, iow, preventing impatient user d ouble clicks.

2002-04-17 Thread Ron Hornbaker
, BookCrossing.com BOOKS JUST WANNA BE FREE! http://BookCrossing.com -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 17, 2002 10:37 AM To: CF-Talk Subject: RE: Submitting a form only once, iow, preventing impatient user d ouble clicks. Use

RE: Submitting a form only once, iow, preventing impatient user d ouble clicks.

2002-04-17 Thread Matt Robertson
Dave, I'm doing exactly what you are this morning. Of the three examples that were given early on in the thread, I've settled on this one so far: INPUT TYPE=Button NAME=Submit VALUE=Submit Form onclick=javascript:this.value='Please Wait';this.disabled=1;document.forms[0].submit() On my

RE: Submitting a form only once, iow, preventing impatient user d ouble clicks.

2002-04-17 Thread Dave Carabetta
This should work to maintain type=submit: input type=submit name=submitted value=Generate Report onClick=if(this.value == 'Generate Report'){ this.value='Running Report...';return true;}else{return false}; class=submit (remove line wraps in the onClick parameter) Ron Hornbaker Co-Founder,