Rails 2.0 link_to_remote, RESTful routes link_to_remote

To get link_to_remote to work on rails 2.0 / RESTful routes, you need to add :method => :get to link_to_remote. For example

            <%= link_to_remote "e",
      :url => edit_record_path(record), :update => 'test', :method => :get %>

Comments

  1. [...] see my RESTful link_to_remoate solution for help on using redbox with RESTful [...]