xxxxxxxxxx
swal({
title: "Wow!",
text: "Message!",
type: "success"
}).then(function() {
window.location = "redirectURL";
});
xxxxxxxxxx
$(document).ready(function(){
swal(
"Successful",
"Operation Sucessfull",
"success"
).then(function() {
window.location = "redirectURL";
});
});
xxxxxxxxxx
function NotificationMessage(message, type = 'success', url = false) {
const Toast = Swal.mixin({
toast: true,
position: 'top-end',
showConfirmButton: true,
confirmButtonText: 'Ko`rish <i class="fa fa-arrow-right"></i>',
timer: 5000,
preConfirm: () => {
return window.location.href = url;
},
timerProgressBar: true,
})
Toast.fire({
icon: type,
title: message
})
}
NotificationMessage('Qo`shildi', 'success', 'https://www.google.com/');