jBox Confirmations
by Michael Baas
HTML
<link rel="stylesheet" href="https://code.jboxcdn.com/jBox.css">
<script src="https://code.jboxcdn.com/jBox.js"></script>
<script src="https://code.jboxcdn.com/plugins/Confirm/jBox.Confirm.js"></script>
<link rel="stylesheet" href="https://code.jboxcdn.com/plugins/Confirm/jBox.Confirm.css">
<span onclick="askMe" ">Click me</span>
JavaScript
var jb;
function askMe() {
console.log(jb);
jb.Open({"confirmButton": "new confirm-text here!"});
};
$(function(){
jb = new jBox(
"Confirm", {
"cancel":function() {$(document).trigger("event_no");},
"cancelButton":"No",
"confirm":function(){$(document).trigger("event_yes");},
"confirmButton":"Yes",
"content":"Do you like this sample?",
"title":"Your choice, please!"
}
);
});