How to use image tag nested under a href in rails

509 Views Asked by At

I'm new to rails and trying to implement a lightbox in rails 4. My question is that how can I write the following code in erb?

<a href="#img1">
  <img src="some_img.jpg">
</a>

<a href="#_" class="lightbox" id="img1">
  <img src="some_img.jpg">
</a>
2

There are 2 best solutions below

0
On BEST ANSWER
<%= link_to image_tag("some_img.jpg"), "#img1" %>

<%= link_to image_tag("some_img.jpg"), "#_", :class => "lightbox", :id => "img1" %>
0
On
%a#img1.lightbox{:href => "#_"}

  %img{:src => "some_img.jpg"}