bootstrap-sweetalert icon indicating copy to clipboard operation
bootstrap-sweetalert copied to clipboard

redirect to another page

Open santhu342 opened this issue 6 years ago • 1 comments

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

santhu342 avatar Apr 26 '18 10:04 santhu342

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"; });

Zelrone avatar Dec 07 '19 13:12 Zelrone