21
Dec/090
Dec/090
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");
});
26
Aug/080
Aug/080
Accordion Javascript
Light weight Accordion Javascript

One of the smallest accordion script which is extremely simple and easy to integrate. Does’nt require any framework and fully cross-browser compatible.






