Hey there, I have the following I wrote to switch a featured product image on mouseover:
$('.thumbnail').live('click mouseenterintent', function () {
$('.featured img').prop('src',$(this).prop('src').replace('small','big'));
return false;
});
mouseenterintent does not seem to work here like mouseover does... what am I doing wrong?