James King answer extension:
using the firebug console, you can see the response to the command:
bootbox.alert('hello world')
- A link to the boot box containing the div element; Object[div.bootbox]
Therefore, it is very simple to completely override the warning when you call it by simply changing its css attributes:
bootbox.alert('Danger!!' ).find('.modal-content').css({'background-color': '#f99', 'font-weight' : 'bold', color: '#F00', 'font-size': '2em', 'font-weight' : 'bold'} );
Mark b
source share