Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to pass a link_to block with html but can't get it. I tried some other ways with no luck so I will use my original code:

<% link_to survey_path(survey), :class => "button" do %>
   <span>add questions to <%= survey.name %></span>
<% end %>

This doesn't show the :class though.

What needs to be corrected?

share|improve this question

1 Answer

up vote 5 down vote accepted

Try to add = to make it <%= %>

<%= link_to survey_path(survey), :class => "button" do %>
   <span>add questions to <%= survey.name %></span>
<% end %>

In the view code in Rails 3 applications it’s sometimes necessary to use <%= instead of <% at the beginning of blocks that output content, such as form_for.

Since it's just a span, why don't you just do

<%= link_to "add questions to #{survey.name}", survey_path(survey), :class => "button" %>
share|improve this answer
Check the generated HTML, then figure which tag needs to be styled and add the class to that tag – D3mon-1stVFW Jun 29 '12 at 15:05
Silly me, I didn't have any styles on that class name. I like your extra suggestion. Thank you. – LearningRoR Jun 29 '12 at 15:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.