asked on
$(function() {
$('select[name=myClients]').on('change', function() {
let selectedValue = $(this).val()
updateView(selectedValue);
});
$('#cancel-sessions').submit(function(e) {
e.preventDefault();
if (!confirm('Are you sure you want to cancel the selected sessions')) {
console.log('returning');
return;
}
$('#form-message').hide();
$.post(this.action, $(this).serialize(), function(resp) {
updateView(0);
if (resp.msg) {
$('#form-message').html(resp.msg).show();
}
}, 'JSON')
})
function updateView(selectedValue) {
$.ajax({url: 'bookedSessions.php', success: function(result) {
$('#results').html(result);
}});
}
})