:confirm option in Rails being ignored while using Rails 3 and jQuery UJS
- by peehskcalba
I've got a table of projects in my Rails app, each with a delete link, like so:
<%= link_to "Delete", project, :confirm => "Are you sure?", :method => :delete %>
However, the delete request is sent even if the user clicks "Cancel" on the dialog box.
Any ideas on how to fix this? I'm using Rails 3, Beta 3, with the jQuery library and accompanying jQuery UJS library.