Hi,
I need to make an entire table row act as a hyperlink. In HTML, this would look like this:
<tr onclick="location.href='#'"> <td><%=h object.send('property') %><td> ... </tr>
What is the best way of writing this in Rails? I could concatenate the elements together 'manually', but that seems cludgey.
Thanks in advance!
Henry