Hi!
I have a form with only a checkbox. When the user clicks this checkbox I want to submit the form through AJAX. It’s like a TODO-list where you can mark the item as done by ticking a box.
So, how can I do this? I’m using Rails 3.1.
I guess there is no native function to achieve this. So far I have this:
My form in the view:
<%= form_for [@list, item], :remote => true do |f| %>
<%= f.check_box :status %>
<% end %>
Then in my javascript file I guess I need to do something like (coffee):
$(‘input#item_status’).live ‘click’, (e) →
form = $(this).parent(‘form’)
/* SUBMIT FORM HERE! */
Any ideas?