[wd_asp elements=’search’ ratio=’100%’ id=1]

Sweet Alert 2 do function on confirm

13th July 2017

Jquery - Tricks

jquery icon


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
sweetAlert.close();