in reply to JavaScript and form submission

I'd approach the problem by not trying to prevent duplicate submissions, but to handle them in a smarter way.

Include an identifier in the form (using a hidden input). If a submission comes in with an identifier you've seen before, then treat it as an update to the existing data rather than new data.

Replies are listed 'Best First'.
Re^2: JavaScript and form submission
by rashley (Scribe) on Nov 22, 2006 at 13:30 UTC
    No worries, with Corion's help I've got it working now.