Skip to content

Instantly share code, notes, and snippets.

@cdevroe
Created March 12, 2010 22:20
Show Gist options
  • Save cdevroe/330865 to your computer and use it in GitHub Desktop.
Save cdevroe/330865 to your computer and use it in GitHub Desktop.
jQuery confirm delete?
$(document).ready(function(){
// All links with class delete
$('.delete').click(function(event){
var answer = confirm("Are you sure you want to delete this item?");
if (answer) {
// Delete item.
} else {
event.preventDefault(); // Do not delete item.
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment