Hi!
I'm trying to change the Product-Image from your block-shop-select template on button hover.
I've already made it do change the Product Decriptions on hovering the buttons modifying the script:
$(document).ready(function () {
$('.earpods-colors .nav-link').on('mouseover', function (e) {
let data = $(this).attr("data-desc");
$('.item-name').html(data);
})
});
But i'm pretty lost changing the rest - do you have any tips to do that?
Thanks in advance :)
