Skip to content

Instantly share code, notes, and snippets.

@ekka21
Created August 29, 2012 13:34
Show Gist options
  • Save ekka21/3512582 to your computer and use it in GitHub Desktop.
Save ekka21/3512582 to your computer and use it in GitHub Desktop.
Javascript: confirm delete alert box
var confirmDel = confirm("Are you sure? This is your last chance!");
if(confirmDel === true)
{
return true;
} else {
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment