thanks for reading this post. I\'ve been stuck on an issue with RoR for the past few days. I have a form under index.html.erb as:
A
If you look at the rendered source of your page, you should notice an error in the fields attributes.
The correct way to do it is as follows:
<%= form_tag({:action => 'list'}, :remote => true %>
Notice the curly brackets, very important! Alternatively you could have done:
<%= form_tag('list', :remote => true %>