Reputation: 1531
What are some of the ways to prevent a users from clicking a button twice and inadvertently posting twice? Are there any methods specific to rails?
Upvotes: 2
Views: 453
Reputation: 4539
The button_tag helper includes an option, :disable_with
. Using this option will disable the button (using unobtrusive JavaScript) when the form is submitted, preventing additional clicks.
Upvotes: 3