Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I wrap a link around view code? I can't figure out how to pass multiple lines with ruby code to a single link_to method. The result I am looking for is that you click the column and get the show page:

<div class="subcolumns">
  <div class="c25l">
    	<div class="subcl">
        <%= image_tag album.photo.media.url(:thumb), :class => "image" rescue nil  %>
    	</div>
    </div>
  <div class="c75r">
    	<div class="subcr">
    		<p><%= album.created_at %></p>
    		<%= link_to h(album.title), album %>
    		<p><%= album.created_at %></p>
    		<p><%= album.photo_count %></p>
    	</div>
  </div>
</div>
share|improve this question

5 Answers

up vote 86 down vote accepted

link_to takes a block of code ( >= Rails 2.2) which it will use as the body of the tag.

So, you do

<%= link_to(@album) do %>
  html-code-here
<% end %>

But I'm quite sure that to nest a DIV inside a A-tag is not valid HTML.

EDIT: Added '=' character per Amin Ariana's comment below.

share|improve this answer
5  
This comment is just a reference: <a><div></div></a> is valid in HTML5, but not in earlier HTML specs. See stackoverflow.com/questions/796087/make-a-div-into-a-link for a similar question. – chucknelson Aug 28 '11 at 0:08
2  
Right before "link_to" you need a "=" sign for it to work, otherwise you'll get blank as output. – Amin Ariana May 12 '12 at 23:09

You can use link_to with a block:

<% link_to(@album) do %>
    <!-- insert html etc here -->
<% end %>
share|improve this answer
1  
only in >= Rails 2.2 – Omar Qureshi Jul 6 '09 at 10:47
Ah, ok I wasn't aware of that! Thanks Omar. – Barry Gallagher Jul 6 '09 at 10:51

For older Rails versions, you can use

<% content_tag(:a, :href => foo_path) do %>
  <span>Foo</span>
<% end %>
share|improve this answer

Also, this may be an issue for some:

make sure to write <%= if you are doing a simple link with code in it instead of <%

e.g.

<%= link_to 'some_controller_name/some_get_request' do %>
  Hello World
<% end  %>
share|improve this answer
I think this is required in Rails 3+ – m33lky Apr 2 '12 at 22:13

A bit of a lag on this reply I know -- but I was directed here today, and didn't find a good answer. The following should work:

<% link_to raw(html here), @album %>
share|improve this answer
This shouldn't be used as all html entered inside the raw is prone to XSS. – Aurril Dec 19 '11 at 5:40

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.