Tagged: fadeIn

0

Toggle effect for fade – with 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”); });