Zac Stewart has come up with a great jQuery-powered Growl Notification plugin that is particularly easy to use and pretty to look at to boot. Enter jQuery Meow.

From his very own description: “jQuery Meow mimics Growl notications. It supports all jQuery events and you can bind it to various sources for message input making it ideal for form validation, Rails flash notices, or a replacement for the alert() box.”

After grabbing and linking the associated .js and .css file from github, implementing Meow is as easy as:

var options = {
        title: 'Meow Example',
        message: 'Hello, World!',
      };

      $.meow(options);

Useful.

Related Link: http://zacstewart.com/projects/meow.html