Showing posts with label Growl Plugin. Show all posts
Showing posts with label Growl Plugin. Show all posts

Thursday, May 18, 2017

Growl Notification Example Web Application

Its now very easy to show our error or other types of messages in our web application easily. Growl is a nice plugin to display our target messages nicely in our web application. 

$('.error').click(function(event) {
    return $.growl.error({
        message: "Growl Error Message!"
    });
});
$('.notice').click(function(event) {
    return $.growl.notice({
        message: "Growl Notice Message!"
    });
});
$('.warning').click(function(event) {
    return $.growl.warning({
        message: "Growl Warning Message!"
    });
});








Download full example from here