button_tag like link_to rails 3

ruby-on-rails

Solution

Use `button_to`: http://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html#method-i-button_to

Problem

I need use this code: ``` <%= button_tag :class => "btn btn-primary" do %> <%= t('.follow_all')%> <% end %> ``` html output: ``` <button class="btn btn-primary" name="button" type="submit"> Follow all </button> ``` if it's possible, How can I use this button like a link, something like: ``` <%= button_tag new_user_registration_path, :class => "btn btn-primary" do %> <%= t('.follow_all')%> <% end %> ``` I need use `button_tag` helper. I can not use `link_to` helper, or instead, if it's possible, How can I send params from button without use a form?

Original source