$(".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.html"); }); $('#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.html"); break; case 'remark': $(".settingDetail").load("../dashboard/pages/setting_remark.html"); break; case 'enquiry': $(".settingDetail").load("../dashboard/pages/setting_enquiryitem.html"); break; case 'product': $(".settingDetail").load("../dashboard/pages/setting_product.html"); break; case 'coupon': $(".settingDetail").load("../dashboard/pages/setting_coupon.html"); break; default: location.reload(); break; } })