callback_confirm: function(){
// display other modal
setTimeout(function(){
$.alert({
title: "",
body:"Vous réserver l'emplacement... Vous voulez réserver autre emplacements?",
is_delayed: false,
text_confirm: 'Finaliser et payer',
text_decline: 'Réserver autre emplacement',
callback_confirm: function(){
window.location.href = "http://127.0.0.1:5000/payment/";
},
});
},1000);
},
Currently, to chain alerts I use the following code :
Could it be more simple to use ?