/*$(".company_info").click(function () { $(".tabContent").load("../view/companypage/info.php"); $(".tabMenuBtn").removeClass("active"); $(this).addClass("active"); }); $(".company_stafflist").click(function () { $(".tabContent").load("../view/companypage/staff.php"); $(".tabMenuBtn").removeClass("active"); $(this).addClass("active"); }); $(".company_enrolhistory").click(function () { $(".tabContent").load("../view/companypage/enrolhistory.php"); $(".tabMenuBtn").removeClass("active"); $(this).addClass("active"); }); $(".company_changepassword").click(function () { $(".tabContent").load("../view/companypage/changepassword.php"); $(".tabMenuBtn").removeClass("active"); $(this).addClass("active"); }); $(".company_result").click(function () { $(".tabContent").load("../view/companypage/result.php"); $(".tabMenuBtn").removeClass("active"); $(this).addClass("active"); }); $(".company_resource").click(function () { $(".tabContent").load("../view/companypage/resource.php"); $(".tabMenuBtn").removeClass("active"); $(this).addClass("active"); }); $(".member_info").click(function () { $(".tabContent").load("../view/memberpage/info.php"); $(".tabMenuBtn").removeClass("active"); $(this).addClass("active"); }); $(".member_enrolhistory").click(function () { $(".tabContent").load("../view/memberpage/enrolhistory.php"); $(".tabMenuBtn").removeClass("active"); $(this).addClass("active"); }); $(".member_changepassword").click(function () { $(".tabContent").load("../view/memberpage/changepassword.php"); $(".tabMenuBtn").removeClass("active"); $(this).addClass("active"); }); $(".member_result").click(function () { $(".tabContent").load("../view/memberpage/result.php"); $(".tabMenuBtn").removeClass("active"); $(this).addClass("active"); }); $(".member_resource").click(function () { $(".tabContent").load("../view/memberpage/resource.php"); $(".tabMenuBtn").removeClass("active"); $(this).addClass("active"); });*/