Mouseover not working on image_tag

311 Views Asked by At

I want to show a different image on the mouse over event. This is the code I have (haml):

  = image_tag(product.photos.first.asset.thumb.url, :onMouseover=> "this.src=product.photos.second.asset.thumb.url'", :onMouseout=> "this.src=product.photos.first.asset.thumb.url'")

but I keep getting "Uncaught SyntaxError: Unexpected token ILLEGAL" on that line.

Any suggestions of what am I doing wrong? thanks!

1

There are 1 best solutions below

0
On

This was the solution:

      = image_tag(product.photos.first.asset.thumb.url, :onMouseover=> "this.src='#{product.photos.second.asset.thumb.url}'", :onMouseout=> "this.src='#{product.photos.first.asset.thumb.url}'")