-
-
Save kyleslattery/331138 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function(){ | |
// All links with class delete | |
$('.delete').click(function(event){ | |
// This should work--if cancel is pressed, it returns false, canceling | |
// the click. I haven't tested it out myself, though. | |
return confirm("Are you sure you want to delete this item?"); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment