I am a jquery/javascript newbie. What I want to do is add a class to the open accordion title, and remove it when i open another.
heres the code:
&l
I think it would work if you put this on your javascript:
$('.accordion-toggle').on('shown', function () { $(this).addClass('active') }); $('.accordion-toggle').on('hidden', function () { $(this).removeClass('active') });