I am using the bootbox in my application and would like to know how to do to change the default alert name that is OK, below my script:
@section Scripts{
<script src="~/Scripts/bootbox.min.js"></script>
<script>
$(document).ready(function () {
$.getJSON('@Url.Action("Ajax_Teste")', function (response) {
alert("getJson sucesso");
}).fail(function (data) {
bootbox.alert("Não foi possível processar a sua requisição. abra o log para consulta" + data.responseJSON.msg);
});
});
</script>
}