If my user clicks more than once on a submit button of a form, he essentially sends multiple GET/POST requests (depending on the form prefs).
I find that disabling the submit button using JS is a bit problematic, because if a user tries to stop (ESC/Stop Button), it doesn't reset the button (unless you catch that and handle that using JS again), if the user comes back (Back Button) from the next page, the submit button is still disabled (at least in Firefox).
What is the best practice for disabling multiple form submits.
Thanks!