(function($){ var tabCont = $('.offerlist'); var tabItem = $('.offer',tabCont); var tabDex = $('.offer-des',tabCont); // tabDex.eq(0).show(); // tabItem.on('click',function(){ $(document).on('click','.offer',function(){ var tabCont = $('.offerlist'); var tabItem = $('.offer',tabCont); var tabDex = $('.offer-des',tabCont); var index = $(this).index(); if($(this).hasClass('current')){ $(this).removeClass('current'); // tabDex.eq(index).hide(); $(this).parent().parent().find('.offer-des').eq(index).hide(); }else{ $('.offerlist .offer').removeClass('current'); $(this).addClass('current'); tabDex.hide(); $(this).parent().parent().find('.offer-des').eq(index).show().siblings().hide(); $('body').scrollTop($(this).parent().parent().offset().top); } }); })(jQuery)