Help for documentary snippet from (http://goo.gl/TGLccu | jQuery Script)
See demo website
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<link href="notify.css" rel="stylesheet">
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="notify.js"></script>
$.notify('I am a default notification box.');
$.notify('I am a success box.', 'success');
$.notify({
// custom notification message
message: "",
// 'default', 'info', 'error', 'warning', 'success'
status: "default",
// timeout in ms
timeout: 5000,
// 'top-center','top-right', 'bottom-right', 'bottom-center', 'bottom-left'
pos: 'top-center',
// z-index style for alert container
zIndex: 10400,
// Function to call on alert close
onClose: function()
{
// Here is callback function
}
});