BootBox.js 버튼 포커싱하기 Alert 창 띄우기 var dialog = bootbox.dialog({ title: "Hello, BootBox!", message: msg, buttons: { ok: { label: "닫기", className: 'btn-danger', callback: function(){ } } } }); 버튼에 포커스 dialog.on('shown.bs.modal', function() { dialog.find(".btn-danger:first").focus(); });