i am new in jquery and bootbox i want to add an action to each button alert of the confirmation so if the selected button is yes then i want to redirect in a link for exemple
<script type="text/javascript">
$(function() {
bootbox.confirm({
message: "click yes to redirect google",
buttons: {
confirm: {
label: 'Yes',
className: 'btn-success'
$(location).attr('href',"http://www.google.com/");
},
cancel: {
label: 'No',
className: 'btn-danger'
}
},
callback: function (result) {
console.log('This was logged in the callback: ' + result);
}
});
});
</script>
i'used $(location).attr('href',"http://www.google.com/");
but it not worked
thank you