Hello, I have inside a .erb file an HTML table which rows' classes are alternated using
<tr class="<%= cycle('even_line', 'odd_line') %>">
This gives me a good visual style, but it is not enough. I want to change the row class on event mouseover. Is there any rails helper that gives me this functionality? I'm searching through the API but can't find anything helpful. Hope you can help me. Thanks!