Home › Forums › JavaScript › Collapsible Menu with Activ-State › Re: Collapsible Menu with Activ-State
July 28, 2012 at 4:26 am
#106922
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