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(){
    $("#show-pnotify").on('click', function() {

        new PNotify({
            title: 'Regular Notice',
            text: 'Check me out! I\'m a notice.',
            delay: 2000,
            type: 'error'
        });


    });
});