jquery notification message box code example
Example 1: pop up notification using jquery
$.notify("Hello World");
Example 2: jquery live notification
setInterval(function(){
$.get("updates.php", {}, function(results){
if ($(results).length) {
$("results").each(function(){
// do something with update messages
});
}
});
}, 30000); // Every 30 seconds.