do |form|
hi vimal thanks but i dont think thats right. could you or someone show a call to form _remote_tag that will degrade if javascript is enabled in the browser?
if youd like something to work on how about his from railscasts
<% form_tag complete_tasks_path, :method => :put do %> <ul> <% for task in @incomplete_tasks %> <li> <%= check_box_tag "task_ids", task.id %> <%= task.name %> </li> <% end %> </ul> <%= submit_tag "Mark as Complete" %> <% end %>