JSFiddle - React, Tailwind, and code Playground
by rodrigonery
HTML
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="http://bootboxjs.com/bootbox.js"></script>
<a class="alert" href="#">teste</a>
<a class="alert2" href="#">teste</a>
JavaScript
$(document).on("click", ".alert", function(e) {
bootbox.alert("nigga what!", function() {
console.log("Alert Callback");
});
});
$(document).on("click", ".alert2", function(e) {
bootbox.prompt("What is your name?", function(result) {
Example.show("Prompt dismissed");
});
});