simple
$.notify("simple notify");
clickalert
$.notify("click alert notify").click(function(){
alert("clicked!");
});
clickredirect
$.notify("click redirect notify").click(function(){
location.href = "https://github.com/asmsuechan/jquery_push_notification";
});
icon_pic
$.notify("notify with picture", { url: "https://avatars3.githubusercontent.com/u/11307908?v=3&s=460" });
set_title
$.notify("set title option", { title: "This is title!" });
close_alert
$.notify("close_alert").close(function(){
alert("closed!");
});