///
$(function () {
alert("Notification");
var container = $("#container-bottom").notify({ stack: 'above' });
container.notify("create", {
title: 'Look ma, two containers!',
text: 'This container is positioned on the bottom of the screen. Notifications will stack on top of each other with the position
attribute set to above
.'
}, { expires: false });
});