Last week I signed up Gravity a new site setup by a few guys that used to work at MySpace. As i was using the site I noticed these great little notifications popping up in my browser, Mac users will be familiar with this as they work in the same way as Growl notifications.
I thought it was interesting that this technique of displaying live information to users could be presented in this way, so i went on the hunt for a similar jQuery plugin and found a number of results however the one that caught my eye was the jQuery Notice plugin by Tim Benniks.

Below is the JavaScript that is used in the demo this plugin simply extends the jQuery framework, allowing you to activate a message box by calling the function ‘noticeAdd()’.
One interesting feature of this plugin is that it allows you to append a CSS class to the popup notice which can then be styled.
For example with the error message I’m appending the .error class and in the CSS i’m just adding a background color.
$(document).ready(function()
{
jQuery.noticeAdd({
text: 'This is a simple notification using the jQuery notice plugin. Click the X above to remove this notice.',
stay: true
});
$('.add').click(function()
{
jQuery.noticeAdd({
text: 'This is a notification that you have to remove',
stay: true
});
});
$('.add2').click(function()
{
jQuery.noticeAdd({
text: 'This is a notification that will remove itself',
stay: false
});
});
$('.add3').click(function()
{
jQuery.noticeAdd({
text: 'This is an error notification!',
stay: false,
type: 'error'
});
});
$('.add4').click(function()
{
jQuery.noticeAdd({
text: 'This is a success notification!',
stay: false,
type: 'success'
});
});
$('.remove').click(function()
{
jQuery.noticeRemove($('.notice-item-wrapper'), 400);
});
});
<ul> <li class="add">Click here to see a notification that you have to remove</li> <li class="add2">Click here to see a notification that does not stay</li> <li class="add3">Error Notification</li> <li class="add4">Success Notification</li> <li class="remove">Remove all active notifications</li> </ul>This entry was posted in CSS, Design, Downloads, Javascript, jQuery and tagged Browsers, CSS, Design, Downloads, Growl, Javascript, jQuery, Tutorials. Bookmark the permalink.
Pingback: uberVU - social comments
Cool, thx.
Nice plugin! I’ll use this solution in next project.
Best regards! Take care!
Very nice plugin…. dynamic !
Very nice plugin, I will try it on my site~
This notifications will be great on wordpress.
Exaple:
Show a notification bubble to unregistered users.
And not to show that bubble when your logged in.
I dont know if you ccan do that.
Subscribe to all the Papermashup Tutorials and articles straight to your RSS reader.
Sign up and get all the Papermashup tutorials straight to your inbox.
Follow us on Twitter and get in-stream messages
9 discussions around jQuery growl notification plugin