$(function(){ $('.main-tab a').click(function(){ var tab = $(this).attr('href'); $('.main-tab li').removeClass('active'); $(this).parent().addClass('active'); $('.main-tab-content').hide(); $(tab).show(); return false; }); $('.main-tab li:first-child a').trigger('click'); });