Hello I'm new here and I wondered if anyone could help. I have implemented bourbon.io's accordion, but I can not get it to open and collapse on a single click.
It opens, but then stays open.
$('.js-accordion-trigger').bind('click', function(e){
jQuery(this).parent().find('.submenu').slideToggle('fast'); // apply the toggle to the ul
jQuery(this).parent().toggleClass('is-expanded');
e.preventDefault();
});