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
$('.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