Revision: 14440
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at June 4, 2009 09:07 by fackz
Initial Code
<input type="submit" name="save" value="Save" onclick="this.form.submit(); this.disabled = 1;" />
Initial URL
Initial Description
To prevent multiple clicks from sending more than one request, you can use a JavaScript that does up to two things: first, you can use the “return false;†function of a hyperlink or submit button to prevent any click after the first from sending a request, and second, you can change the link or button to a disabled state so that the browser won’t accept clicks and the user can see that a request has already been sent.
Initial Title
Preventing multiple page requests after double-clicks
Initial Tags
Initial Language
HTML