[ create a new paste ] login | about

Link: http://codepad.org/uHi5dqET    [ raw code | fork ]

mike.helgeson - Plain Text, pasted on Jul 2:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
slideDown: function(speed,callback){
		return this.animate({height: "show"}, speed, callback);
	},

	slideUp: function(speed,callback){
		return this.animate({height: "hide"}, speed, callback);
	},

	slideToggle: function(speed, callback){
		return this.animate({height: "toggle"}, speed, callback);
	},

	fadeIn: function(speed, callback){
		return this.animate({opacity: "show"}, speed, callback);
	},

	fadeOut: function(speed, callback){
		return this.animate({opacity: "hide"}, speed, callback);
	},


Create a new paste based on this one


Comments: