> I've had this problem too.....My guess is that people are
> double clicking the form submit button. I've attempted to
> remedy this situation with something like the following:
>
> <input type="submit" name="whatever" value="Submit"
> ondblclick="return false;">
>
> but it doesn't appear to work. I would be interested to know
> if there's any way to do this so it works. Thanks.
There are a couple of problems with this. First, not all browsers support an
ondblclick event handler. Second, and more significant, it's probably not
the case that people are double-clicking the submit button. What's more
likely is that they are clicking, and waiting a second or two, and clicking
again. This isn't a double click.
You could try another approach. When a user clicks on the button, call a
function which checks a JavaScript variable flag, and if the flag isn't set,
set the flag and allow the form submission to proceed.
Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.