how do I only apply first to the first item?
<% @clients.each do |client| %>
<%= link_to client.name, client, :class=> “first” %>
<% end %>
thanks
how do I only apply first to the first item?
<% @clients.each do |client| %>
<%= link_to client.name, client, :class=> “first” %>
<% end %>
thanks
how do I only apply first to the first item?
<% @clients.each do |client| %>
<%= link_to client.name, client, :class=> “first” %>
<% end %>
if client == @clients.first
…
end
Not super efficient though.
Why not use CSS?
-philip
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs