Follow Ohmkumar on Twitter
21
Dec/09
0

Toggle effect for fade – with jQuery

jQuery
Write the below function first:

jQuery.fn.fadeToggle = function(speed, easing, callback) {
return this.animate({opacity: 'toggle'}, speed, easing, callback);
};

After that you can do as usual like:

$(".main").click(function () {
$(".child").fadeToggle("slow");
});