$('.tab__list').on('click', '.tab__item', function() {
const
$this = $(this),
{ label, ...attrs } = text[$this.data('tab')];
$this.siblings().removeClass('tab__item--active');
$this.addClass('tab__item--active');
$('#formField').attr(attrs);
$('#formLabel').text(label);
});
var N = 5000; // 5 секунд
setInterval(function(){
$('#targetBlock').toggleClass('className');
}, N);
$('.panel').each(function( index ) {
var bgColor = $(this).css('background-color');
$(this).attr('data-color', bgColor);
});
$(document).ready(function() {
$('.panel0 .panel1 .panel2').each(function(i, e) {
var bgColor = $(this).css('background-color'); //Определяем цвет фона
$(this).attr('data-color', bgColor); //Добавляем атрибут с найденным цветом фона
})
});
.panel0 .panel1 .panelX
заменить на div
и операция будет проходить со всеми слоями вообще...