Skip to content

Instantly share code, notes, and snippets.

View psenechal's full-sized avatar

Philip Senechal psenechal

View GitHub Profile
@psenechal
psenechal / gist:1711511
Created January 31, 2012 16:45
Bootbox Confirm
$("#mylink").click(function(e) {
e.preventDefault();
bootbox.confirm("Are you sure?", function(result) {
if (result) {
window.location = e.target;
}
else {
bootbox.hideAll();
}
});