I've got a button I created as an image. This button has a mouse over that switches to another image. Basic javascript. I need the image inside a Rails link to. Is there a way for me to have the javascript event inside the rails link?
Here's what I have working:
<%= link_to image_tag("../assets/images/buttonBig.png", :border=>0), :action =>
'signup', :controller => 'prelogin' %>
Here's what I want:
<%= link_to image_tag("../assets/images/buttonBig.png"
onmouseover="src='../assets/images/buttonBigHover.png'"
onmouseout="src='../assets/images/buttonBig.png'", :border=>0), :action =>
'signup', :controller => 'prelogin' %>

