I have this code:
<% @hello = "hello world" %>
<td class="text"><%= link_to project.name, project,
:onmouseout=>"hidetooltip()",
:onmouseover=>"showDescription()"%>
</td>
The showDescription JavaScript function takes a string parameter. I want to pass @hello as a parameter to showDescription. I tried everything and can't seem to get it to work.