Choosing a selection results in a full page refresh.
Opens in a new window.
document.addEventListener("DOMContentLoaded", function() {
// Habilitar los botones de selección de color
document.querySelectorAll('.color-swatch input[type="radio"]').forEach(input => {
input.removeAttribute('disabled'); // Remueve el atributo disabled
input.classList.remove('disabled'); // Elimina la clase que lo oculta
});
// Restaurar la visibilidad de las imágenes
document.querySelectorAll('.color-swatch img').forEach(img => {
img.style.opacity = "1";
img.style.filter = "none";
img.style.pointerEvents = "auto";
});
});