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

In HTML, if I wanted a link to open in a new window, I'd adopt target="_blank" like this:

<a href="http://www.website.com/" target="_blank"><img src="/img.png" /></a>

How do I add the "_blank" to rails? Here's the code I so far for the link (but it currently opens in the same tab/window):

<%= link_to image_tag("img.png"), 'http://www.website.com/' %>
share|improve this question

1 Answer

up vote 5 down vote accepted

I think it's like this

<%= link_to image_tag("img.png"), 'http://www.website.com/', :target => '_blank' %>

See http://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html#method-i-link_to

share|improve this answer
Don't you mean :target => '_blank'? – mu is too short Apr 24 '12 at 1:19
@muistooshort yap. Thanks! – Ismael Abreu Apr 24 '12 at 1:21
That worked... Thanks! target: "_blank" also worked. I'm assuming this other version only works on recent versions of rails (I'm using 3.2.2). – glennm Apr 24 '12 at 5:14
1  
@glennm, you are right, that's the Ruby 1.9 style. – Siwei Shen Apr 24 '12 at 5:30

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.