$(".newBookingBtn").click(function () { $(".bookingDetailWrap").load("../dashboard/pages/bookingnewform.html"); }); $(".conflictBtn").click(function () { $(".bookingDetailWrap").load("../dashboard/pages/conflict.html"); }); $(".syncBtn").click(function () { $(".bookingDetailWrap").load("../dashboard/pages/sync.php"); }); $('#Profile').change(function () { var val = $(this).val(); switch (val) { case 'user': $(".settingDetail").load("../dashboard/pages/setting_user.php"); break; case 'holiday': $(".settingDetail").load("../dashboard/pages/setting_holiday.php"); break; case 'remark': $(".settingDetail").load("../dashboard/pages/setting_remark.php"); break; case 'enquiry': $(".settingDetail").load("../dashboard/pages/setting_enquiryitem.html"); break; case 'channel': $(".settingDetail").load("../dashboard/pages/setting_channel.php"); break; case 'reason': $(".settingDetail").load("../dashboard/pages/setting_reason.php"); break; case 'tat': $(".settingDetail").load("../dashboard/pages/setting_tat.php"); break; case 'product': $(".settingDetail").load("../dashboard/pages/setting_product.php"); break; case 'coupon': $(".settingDetail").load("../dashboard/pages/setting_coupon.php"); break; default: location.reload(); break; } })