Crystal Diamante Embellished Eyeglasses Chain

£4.99
3 in stock
document.querySelectorAll('.product-color-swatch input').forEach(function(swatch) { swatch.addEventListener('change', function() { let color = swatch.value; let mainImage = document.querySelector('.product-main-image'); // Assuming you have different images for each color variant mainImage.src = '/path/to/your/image/' + color + '.jpg'; }); });
×
document.querySelectorAll('.product-color-swatch input').forEach(function(swatch) { swatch.addEventListener('change', function() { // Grab the swatch color value (for example, hex color code) let color = swatch.value; // Update product main image (adjust the selector if needed) let mainImage = document.querySelector('.product-main-image'); // Update image based on selected color (ensure you have images with different colors) mainImage.src = '/path/to/your/image/' + color + '.jpg'; // Example, customize as per your file structure }); });