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 have this code:

<%= link_to image_tag("facebook.png", :class => "facebook_icon", :alt => "Facebook", :target => "_blank"), "http://www.facebook.com/mypage" %>

How can I make it to open in new tab when a user clicks the link?

share|improve this question

2 Answers

up vote 6 down vote accepted

The :target => '_blank' parameter should be a parameter of link_to. Like this :

<%= link_to image_tag("facebook.png", :class => "facebook_icon", :alt => "Facebook"), "http://www.facebook.com/mypage", :target => "_blank" %>
share|improve this answer
thx! It works :) – Dantes Aug 26 '12 at 21:18
could you help me please with the second problem? – Dantes Aug 26 '12 at 21:19
it seems your answer solved the second problem too. thx 2x :) – Dantes Aug 26 '12 at 21:21
Gr8 it works for me as well!!! – Rameshwar Vyevhare Mar 5 at 4:37

Try this:

<%= link_to image_tag("facebook.png", :class => "facebook_icon", :alt => "Facebook"), "http://www.facebook.com/mypage", :target => "_blank" %>
share|improve this answer
could you help me please with the second problem? – Dantes Aug 26 '12 at 21:19
it seems your answer solved the second problem too. thx 2x :) – Dantes Aug 26 '12 at 21:21

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.