[jQuery] Gritter

Costas

Administrator
Staff member
A small growl-like notification plugin for jQuery

snap145.png


http://github.com/jboesch/Gritter/

sample code :
JavaScript:
$.gritter.add({
	title: 'Contract Closed!',
	text: 'Client : PipisCrew<br>click [url='http://google.com']here[/url] to see client details',
	image: 'notify.png',
	sticky: true,
	before_open: function(e){
		this.oo= "test"; //store new property
	},
	before_close: function(e){
		console.log(this.oo); //read new property
	},
	after_close: function(e){
		console.log(this.oo); //read new property
	}
});
 
Top