$(document).ready(function(){ function comandcontthreeTabs() { $(".comandcontthree-item-wrap").not(":first").hide(); $(".comandcontthree-tab").click(function() { $(".comandcontthree-tab").removeClass("comandcontthree-tab-active").eq($(this).index()).addClass("comandcontthree-tab-active"); $(".comandcontthree-item-wrap").hide().eq($(this).index()).show(); }).eq(0).addClass("comandcontthree-tab-active"); } function comandcontthreeColor() { var color = $('.comandcontthree-item__info').css('background-color'); $('.comandcontthree-item').css('background-color', color); } comandcontthreeTabs(); comandcontthreeColor(); });