$('.eco .col-md-4').on('click', '.eco_item h4', function() {
var eco = $(this).closest('.eco_item').find('p');
if ( eco.is(':hidden') ) {
$(this).closest('.container').find('.eco_item p').slideUp();
eco.slideDown();
}
});
$(document).on('click', '.deleteBtn', function() {
$(this).parents('li').remove();
});
var skin1 = document.getElementsByClassName("skin_1");
for (var i=0 ; i<skin1.length; i++) {
skin1[i].addEventListener("click", function(){
console.log("hi");
});
}
$('.tab-bar__link').each(function() {
if ( $(this).attr('href') == location.hash ) {
$(this).addClass('tab-bar__link_active');
}
});