JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://bootboxjs.com/deps/bootstrap-3.0.0-wip/dist/js/bootstrap.js"></script>
<script src="http://bootboxjs.com/bootbox.js"></script>
<link rel="stylesheet" href="http://bootboxjs.com/deps/bootstrap-3.0.0-wip/dist/css/bootstrap.min.css">
JavaScript
function test( )
{
bootbox.confirm("Are you sure?", function(result) {
Example.show("Confirm result: "+result);
});
}
window.onbeforeunload = test;