Bootbox Confirm Dialog problems
Unfortunately, the doc Bootbox ( http://paynedigital.com/2011/11/bootbox-js-alert-confirm-dialogs-for-twitter-bootstrap ) not teach how to call the confirm dialog. As it is in the doc window always appears when the page is loaded, what is wrong, should appear when called by clicking on a delete button. This is the code that tried unsuccessfully. // show "false" does not work, the confirm window is showing when page is loaded. $(function () { bootbox.confirm("Confirm delete?", "No", "Yes", function(result) { show: false }); }); // need show the confirm window when the user click in a button,