I\'m trying to swap two images with jQuery. Using the hover event I tried:
$(\"#wlt-DealView .buyButton_new\").mouseover(function(e){
$(\'.buyButton_new\
add the full image path and check
$("#wlt-DealView .buyButton_new").hover(
function()
{
$(this).css('background-image','url(http://107.20.186.103/themes/classic/images/compra_mouseOver.png)');
},
function()
{
$(this).css('background-image','url(http://107.20.186.103/themes/classic/images/compra_normal.png)');
}
);