*/
show: function(speed,callback){
var hidden = this.filter(":hidden");
- return speed ?
+ speed ?
hidden.animate({
height: "show", width: "show", opacity: "show"
}, speed, callback) :
if ( jQuery.css(this,"display") == "none" )
this.style.display = "block";
});
+ return this;
},
/**
*/
hide: function(speed,callback){
var visible = this.filter(":visible");
- return speed ?
+ speed ?
visible.animate({
height: "hide", width: "hide", opacity: "hide"
}, speed, callback) :
this.oldblock = "block";
this.style.display = "none";
});
+ return this;
},
// Save the old toggle function