I'm using link_to in RoR 3
When I use it like this, it works fine:
<%= link_to "Add to your favorites list",:controller => 'favourite_companies', :action =>'create', :company_id=>"#{@company.id}", :company_name=>"#{@company.company_name}" %>
But I would like to pass in a class as well
however, this is not working for me. The class works, but it breaks the link. Any ideas?
<%= link_to "Add to your favorites list",{:controller => 'favourite_companies', :action =>'create'}, :company_id=>"#{@company.id}", :company_name=>"#{@company.company_name}", :class=>"ui-button-text button_text"} %>
<%= link_to "Add to your favorites list",{:controller => 'favourite_companies', :action =>'create'}, :company_id=>"#{@company.id}", :company_name=>"#{@company.company_name}", :class=>"ui-button-text button_text"} %>
try this
<%= link_to "Add to your favorites list", :controller => 'favourite_companies', :action =>'create', :company_id=>"#{@company.id}", :company_name=>"#{@company.company_name}", { :class=>"ui-button-text button_text" } %>
Since the :class should be in :html_options (refering to API)
link_to(body, url, html_options = {})
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With