Can anyone suggest a way to toggle the active class on foundation's section (accordion). I tried the following to collapse an open accordion tab:
$( "p.title" ).click(function() {
if ($(this).parent().hasClass("active")) {
$(this).parent().removeClass("active");
}
});
However, it reverts back to the expanded state.