Skip to content

Instantly share code, notes, and snippets.

@yasaryousuf
Created July 3, 2018 06:55
Show Gist options
  • Save yasaryousuf/ca7090ba907c724a9f129873d27cd94d to your computer and use it in GitHub Desktop.
Save yasaryousuf/ca7090ba907c724a9f129873d27cd94d to your computer and use it in GitHub Desktop.
$('.unlink-user').on('click', function(e){
var href = $(this).attr('href');
e.preventDefault(); // <--- prevent form from submitting
swal({
title: "Are you sure?",
text: "You will not be able to recover this imaginary file!",
icon: "warning",
buttons: [
'No, cancel it!',
'Yes, I am sure!'
],
dangerMode: true,
}).then(function(isConfirm) {
if (isConfirm) {
window.location.href = href;
} else {
return false;
}
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment