<script>
//Добавляем ссылку к слову в 1 слайд
$("[field='gi_descr__0']:contains('sequence')").each(function() {
var newText = $(this).html().replace("sequence", "<a href='https://yandex.ru' target='_blank'>sequence</a>");
$(this).html(newText);
});
//Добавляем ссылку к слову во 2 слайд
$("[field='gi_descr__1']:contains('improve')").each(function() {
var newText = $(this).html().replace("improve", "<a href='https://google.com' target='_blank'>improve</a>");
$(this).html(newText);
});
//Добавляем ссылку к слову в 3 слайд
$("[field='gi_descr__2']:contains('perfect')").each(function() {
var newText = $(this).html().replace("perfect", "<a href='https://avito.ru' target='_blank'>perfect</a>");
$(this).html(newText);
});
//Добавляем ссылку к слову в 4 слайд
$("[field='gi_descr__3']:contains('smallest')").each(function() {
var newText = $(this).html().replace("smallest", "<a href='https://ru.depositphotos.com/' target='_blank'>smallest</a>");
$(this).html(newText);
});
</script>
<style>
/*Скрываем все подписи*/
.t-slds__caption {
display: none;
}
/*Показываем только подпись для активного слайда*/
.t-slds__caption-active {
display: block !important;
}
</style>