Skip to content

Instantly share code, notes, and snippets.

@makeusabrew
Created November 7, 2011 13:16
Show Gist options
  • Save makeusabrew/1344920 to your computer and use it in GitHub Desktop.
Save makeusabrew/1344920 to your computer and use it in GitHub Desktop.
bootbox.js - programatically hide all dialogs
bootbox.alert("Hello");
bootbox.confirm("Can you take it?");
bootbox.alert("Boo!");
setTimeout(function() {
// that's enough of that
bootbox.hideAll();
}, 3000);
@Volmarg
Copy link

Volmarg commented Jan 31, 2020

Works like a charm.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment