Skip to content

Instantly share code, notes, and snippets.

@fhdalikhan
Created October 11, 2020 22:08
Show Gist options
  • Save fhdalikhan/58663cb9dc34a6f7237a89e735ea55fd to your computer and use it in GitHub Desktop.
Save fhdalikhan/58663cb9dc34a6f7237a89e735ea55fd to your computer and use it in GitHub Desktop.
JS Delete Confirmation for Buttons/ or something else
// Delete Confirmation for Buttons/ or something else
function secureDelete(text){
text = typeof text !== 'undefined' ? text : 'Are you sure?';
if(confirm(text)==false){
return false;
}else{
return true;
}
}
// use like if(secureDelete()){ // stuff to do }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment