$(function () { $(".tab_content").hide(); $(".tab_content:first").show(); $("ul.tabs li").click(function () { $("ul.tabs li").removeClass("active").css("color", "#666"); //$(this).addClass("active").css({"color": "#5b96d8","font-weight": "bolder"}); $(this).addClass("active").css("color", "#5b96d8"); $(".tab_content").hide() var activeTab = $(this).attr("rel"); $("#" + activeTab).fadeIn() }); });