pnotify test
HTML
<script src="https://raw.github.com/sciactive/pnotify/master/jquery.pnotify.min.js"></script>
<link rel="stylesheet" href="https://raw.github.com/sciactive/pnotify/master/jquery.pnotify.default.css">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<div class="container" style="background: #EEEEEE;">
<p>Hello, world.</p>
</div>
JavaScript
$(function(){
$.pnotify({
title: 'Regular Notice',
text: 'Check me out! I\'m a notice.',
styling: 'bootstrap',
history: false,
type: 'error'
//type: 'success'
});
});