<script>
// Переход на отдельную страницу при клике на миниатюру с цветом
$(function(){
var optionTimer = setInterval(function(){
var elem = $('.t-product__option-title');
if(elem.length > 1) {
clearInterval(optionTimer);
$('.t-product__option-title').not(':first').each(function(){
var info = $(this).text();
var name = info.split(":")[0];
var url = info.split(":")[1];
// console.log(name, url);
$(this).text(name);
$(this).closest('label').attr('data-redirect', url);
$(this).closest('label').find('[name="Цвет"]').attr('value',name);
})
}
$('.t-product__option-checkmark').click(function(){
// console.log($(this))
var str = $(this).closest('label').attr('data-redirect');
// console.log(str)
window.location.href = `${str}`
})
},1000)
})
</script>