I have the following:
<%=link_to( image_tag(participant.user.profile_pic.url(:small)), :class=>"work") %>
which outputs the following:
<a href="/xxxx/308?class=work"><img alt="xxxx" src="xxxxx"></a>
I want the class "work" to be a class for the a href not a query param, so it should look like:
<a href="/xxxx/308" class="work">
is this possible?