Skip to content

Instantly share code, notes, and snippets.

@yasaryousuf
Created March 13, 2018 05:36
Show Gist options
  • Save yasaryousuf/fdc8065e8eda95f9c43f6d455c045fc6 to your computer and use it in GitHub Desktop.
Save yasaryousuf/fdc8065e8eda95f9c43f6d455c045fc6 to your computer and use it in GitHub Desktop.
sweet-alert-delete-confirmation
$('.tutorial').on('click', function(){
var href = $(this).attr('href');
swal({
title: "Are you sure?",
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "Yes, delete it!",
cancelButtonText: "No, cancel plx!",
closeOnConfirm: true,
closeOnCancel: true
},
function (isConfirm) {
if (isConfirm) {
window.location.href = href;
}
});
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment