jquery.notifications.js http://monkeymonk.be

Notifications system inspired by Growl

GitHub project



			$('.btn-group')
			.on('click', '.btn-info', function () {
				$.notifications('add', {
					title: 'Lorem ipsum',
					content: 'Lorem ipsum dolor sit amet...',
					image: 'http://lorempixel.com/40/40/abstract/',
					sticky: true
				});
			})
			.on('click', '.btn-warning', function () {
				$.notifications('remove');
			})
			.on('click', '.btn-danger', function () {
				$.notifications('removeAll');
			});