1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
swal({ title: 'Are you sure?', text: "You won't be able to revert this!", type: 'warning', showCancelButton: true, confirmButtonColor: '#3085d6', cancelButtonColor: '#d33', confirmButtonText: 'Yes, delete it!' }).then(function () { $('#clearbut').hide(); swal( 'Deleted!', 'Your file has been deleted.', 'success' ); }); |
Close a Sweetalert
1 2 3 |
sweetAlert.close(); |