I am making a todo list application for learning purposes, but am having problems with getting the ajax buttons to show up.
The below code does not render out any text. I did check the category.name value and it works fine when not within the form_remote_tag.
I do have the javascript libraries within the head tag.
In the final rendered output all I get is a bunch of li elements.
Thanks for any help.
<li> <% form_remote_tag :url => {:action => :show_tasks, :id => category} do %> <%= submit_tag category.name %> <% end %> </li>