"Expand all" button for accordions?

Hi.

I work on a site with an FAQ that makes extensive use of BB’s accordion modules. They’ve been working great for a while now, but today the client has decided that she doesn’t like the fact that you have to click on each one to open them and that they need an “expand all” button. Is that possible? Ideally, is that possible without delving into Javascript?

You’re going to need javascript to do this with a button. If you want them to all be open by default, add the css below.

.uabb-faq-content {
    display: block !important;
}

I see…can you provide some guidance on doing this with JS? It’s not my strong suit but I’m not opposed to learning. I’ve been experimenting with a button with an onClick function but no dice. I imagine I’m just pointing it to the wrong place.