swal loader code example
Example 1: swalert 2 show loader
Swal.fire({
title: 'Please Wait !',
html: 'data uploading',
allowOutsideClick: false,
onBeforeOpen: () => {
Swal.showLoading()
},
});
Example 2: sweet alert
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9"></script>
Example 3: sweet alert js
swal({
title: "Deleted!",
text: "Your row has been deleted.",
button: "Close",
icon: "success",
timer: 3000,
buttons: {
confirm: {
text: "OK",
value: true,
visible: true,
className: "",
closeModal: true
},
cancel: {
text: "Cancel",
value: false,
visible: true,
className: "",
closeModal: true,
}
}
});