Confirm

書き方1 - confirm1ボタン押下時

var confirm1 = bootbox.confirm('Are you sure?', function(result) {
  Example.show("確認結果1: " + result);
  BootstrapDialog.alert('I want banana!');
});

書き方2 - confirm2ボタン押下時

$('#confirm2').click(function(){
  var confirm2 = bootbox.confirm({
    title:   'Confirm Box',
    message: '確認メッセージ' ,
    callback: function(result) {
      Example.show("確認結果2: " + result);
    }
  });
});