bootstrap-sweetalert
bootstrap-sweetalert copied to clipboard
redirect to another page
when i click ok button or confirm button run a function . in this function set time interval after run a windown.open or window.location.replace like. please help me.
thank q
Something like this should work for this case
swal.fire({ title: "sample title", text: "sweet alert message", type: "success", confirmButtonClass: "btn btn-secondary" }).then(function() { // you can add your delay function here window.location = "/your-redirect-alert-here"; });