jQuery Notify: Toast Notification Demos

Default

    $.notify("default notify, with overlay and loading, 3s", 3000, "", true, true);
Click to Show Default Notify For 3 Seconds
    $.notify("default notify, without overlay, with loading, 3s", 3000, "", false, true);
Click to Show Default Notify without overlay For 3 Seconds
    $.notify("default notify, with overlay, without loading, 3s", 3000, "", true, false);
Click to Show Default Notify Without Loading For 3 Seconds
    $.notify("default notify, without overlay and loading, 3s", 3000, "", false, false);
Click to Show Default Notify without overlay and Loading For 3 Seconds
    $.notify("loading default notify forever until next notify", -1, "", true, true);
    setTimeout(function() {
        $.notify("next default notify comes, the notify before hide", 3000, "", true, false);
    }, 10000);
Click to Show Default Notify Always Until Next Notify

Success Notify

    $.notify("success notify, with overlay, without loading, 3s", 3000, "success", true, false);
Click to Show Success Notify Without Loading For 3 Seconds
    $.notify("success notify, without overlay and loading, 3s", 3000, "success", false, false);
Click to Show Success Notify without overlay and Loading For 3 Seconds

Information Notify

    $.notify("information notify, with overlay, without loading, 3s", 3000, "information", true, false);
Click to Show Information Notify Without Loading For 3 Seconds
    $.notify("information notify, without overlay and loading, 3s", 3000, "information", false, false);
Click to Show Information Notify without overlay and Loading For 3 Seconds

Attention Notify

    $.notify("attention notify, with overlay, without loading, 3s", 3000, "attention", true, false);
Click to Show Attention Notify Without Loading For 3 Seconds
    $.notify("attention notify, without overlay and loading, 3s", 3000, "attention", false, false);
Click to Show Attention Notify without overlay and Loading For 3 Seconds

2.5 Error Notify

    $.notify("error notify, with overlay, without loading, 3s", 3000, "error", true, false);
Click to Show Error Notify Without Loading For 3 Seconds
    $.notify("error notify, without overlay and loading, 3s", 3000, "error", false, false);
Click to Show Error Notify without overlay and Loading For 3 Seconds