Pnotify
by LeeMellinger
HTML
<link rel="stylesheet" href="//libs.cncdn.cn/pnotify/2.0.0/pnotify.all.min.css">
<script src="//libs.cncdn.cn/pnotify/2.0.0/pnotify.all.min.js"></script>
<button id="show-pnotify">Show pnotify</button>
JavaScript
$(document).ready(function(){
Confirm Dialog - Source
(new PNotify({
title: 'Confirmation Needed',
text: 'Are you sure?',
icon: 'glyphicon glyphicon-question-sign',
hide: false,
confirm: {
confirm: true
},
buttons: {
closer: false,
sticker: false
},
history: {
history: false
}
})).get().on('pnotify.confirm', function() {
alert('Ok, cool.');
}).on('pnotify.cancel', function() {
alert('Oh ok. Chicken, I see.');
});
});