I'm facing an issue, issue is I've a product page where image thumbnails are appearing, i want when user hover or mouseenter on any thumnail the associated 'add to cart' button should appear, current when i mouseenter on any product all 'add to cart' buttons are appearing, link is: http://etekstudio.org/demo/crateen/en/men cod is:
jQuery(document).ready(function(){ var target = jQuery('.product-image'); jQuery(target).mouseenter(function(){ jQuery('.popUpPrice button ').show(); }); });