$("#our-table").on('click', '#button-delete', function () {
var check = null;
Swal.fire({
title: 'Are you sure ?',
icon: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Comfirm'
}).then((result) => {
if (result.isConfirmed) {
check = true
}
})
if (check == true) { // it skips to do this part first
return true;
}
else {
return false;
}
});
สล็อต Slot สมาชิกสล็อตออนไลน์
P.S. I've never studied javascript or jquery before, so I've been studying it on YouTube all the time.