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!
This was the solution: