Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Collapsible Menu with Activ-State Re: Collapsible Menu with Activ-State

#106922
Taufik Nurrohman
Participant
$(function() {
$('#accordion').children('[data-header]').hide().each(function() {
$(this).before('

' + $(this).data('header') + '

');
}).prev().on("click", function() {
$(this).toggleClass('active').next().slideToggle();
});
});

Content 1

Content 2

Content 3

Content 4

Content 5

Demo: http://jsfiddle.net/tovic/EDQn9/9/