CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Language: JavaScript

Jquery accordion

194 Views
Copy Code Show/Hide Line Numbers
 
//Accordion
    $('.accordion> .accordionContent').hide();
    $('.accordion> .accordionHeader').click(function() {
        var $nextDiv = $(this).next();
        var $header = $(this);
        var $visibleSiblings = $nextDiv.siblings('div:visible');
 
        if ($visibleSiblings.length) {
            $visibleSiblings.prev().toggleClass("open");
            $visibleSiblings.slideUp('fast', function() {
                $nextDiv.slideToggle('fast');
                $header.toggleClass("open");
            });
        } else {
            $nextDiv.slideToggle('fast');
            $header.toggleClass("open");
        }
    });
by Arjan
  April 03, 2010 @ 4:23am
Tags:

Add a comment


Report Abuse
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate