$(function() { $('.product').each(function(e){ var root = $(this); var btn = root.find('.product_more button'); btn.on('click', function(e) { e.preventDefault(); root.find('.product_block').fadeIn(); $(this).hide(); }) }); $('.tabs a').on('click', function(e) { e.preventDefault(); var target = $(this).attr('href'); $(this).parents('.tabs').find('a').removeClass('active'); $(this).addClass('active'); $(target).parents('.tab_contents').find('.tab_content').removeClass('active'); $(target).addClass('active').css({opacity: 0}).animate({ opacity: 1 }, 200 ); }); });