Skip to content

Instantly share code, notes, and snippets.

@psenechal
Created January 31, 2012 16:45
Show Gist options
  • Save psenechal/1711511 to your computer and use it in GitHub Desktop.
Save psenechal/1711511 to your computer and use it in GitHub Desktop.
Bootbox Confirm
$("#mylink").click(function(e) {
e.preventDefault();
bootbox.confirm("Are you sure?", function(result) {
if (result) {
window.location = e.target;
}
else {
bootbox.hideAll();
}
});
});
@Html.ActionLink("Delete", "actionname", new { @Controller = "controllername" }, new { id = "mylink" })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment