
A jQuery plugin to add notification bubbles and a notification list to any menu.
Based on the PSD created by Orman Clark
Usage
var notifications = new $.ttwNotificationMenu({ colors:['#f56c7e', '#fec151', '#7ad2f4'] }); //Add bubbles to a menu notifications.initMenu({ someCategory:'#menuItemSelector' }); //create a notification notifications.createNotification('Sample Notification'); //delete a notification var notification = notifications.creatNotification('some notification'); notifications.deleteNotifiction(notification); //get the notifications in a category var notificationsInSomeCategory = getNotifications('someCategory', 'unread');
Hi,
Nice plugin…
I had a question, if I am using this plugin and I am logged into my website and some from somewhere had given a message to me and will I be able to see that notification without a page refresh. Automatically on the message icon like in facebook. Or do I need to page reload to see that notification…
Thanks
Nice plugin…
I had a question, if I am using this plugin and I am logged into my website and some from somewhere had given a message to me and will I be able to see that notification without a page refresh. Automatically on the message icon like in facebook. Or do I need to page reload to see that notification…
Thanks
You need something like comet model: http://en.wikipedia.org/wiki/Comet_(programming)
Bye