
Notify is a lightwieght notification plugin, and its easy to use. Its structure a little diffently then most plugins, its really more like a extension, to give you absolute control over the notifications. Works on mobile webkit too.
$.notify.alert('Attention!! This is easy to use');
There are many ways to close the bar. First is a basic close which can be called when you want it to be.
$.notify.close();
Then there is options that can make the closing process automated. First is simply close where the control is given to the user to close the notification.
$.notify.error('I do not want to close by myself close me ', { close : true });
Then have Notify make a timely exit with autoClose
$.notify.success('Congrats on letting me close my self', { autoClose : 3000 });
Dont want the notification to cover thing on top of the page when scrolled to the top, occupy some space.
$.notify.basic('Basically, I make room for myself up here', { occupySpace : true });
There are many applications for Notify. Notify your users when they complete a form correctly, or incorrectly. Let your users know you have a new Google Plus profile. Have a demo of some awesome features that not all browsers have, let your users know with style.
Basic can be something that is used to welcome a user, or a request to bookmark your page. Its washed so that it will not disstract from your content.
$.notify.basic('Notify Me');
Thanks for mailing us, or Congrats you browser support webGL. Let you users know about a good thing.
$.notify.success('Notify Me');
Opps, something happened so you should let your users know so it can be fixed.
$.notify.error('Notify Me');
Need to tell your users about something. Just want to warn them your page is going to load new content. Try Alert
$.notify.alert('Notify Me');
This is the early stages of the plugin so expect to see more feature popping up.