jBox Confirmations

by Michael Baas

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/core.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.js"></script>
<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">

JavaScript

$(function(){var jb;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!"});jb.open();});