Skip to content

Instantly share code, notes, and snippets.

@aranw
Created March 14, 2012 14:08
Show Gist options
  • Save aranw/2036706 to your computer and use it in GitHub Desktop.
Save aranw/2036706 to your computer and use it in GitHub Desktop.
Bootbox.js Confirm
$(document).on("click", "a.reset",function(e) {
e.preventDefault();
bootbox.confirm("Are you sure you want to reset this users password?", function(confirmed) {
if (confirmed)
{
$.ajax({
url: e.currentTarget.href,
success: function()
{
location.reload();
}
});
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment