Toggle Accordion Attributes for Accessibility [Snippet] <> No-Code Supply Co.

Toggle Accordion Attributes for Accessibility

Toggle Accordion Attributes for Accessibility
$(".accordion-trigger").click(function () {
$(this).toggleAttrVal("aria-expanded", "false", "true"); //toggle trigger attribute
$(this)
.siblings(".accordion-content")
.toggleAttrVal("aria-hidden", "true", "false"); //toggle content attribute
});
// jquery toggle just the attribute value
$.fn.toggleAttrVal = function (attr, val1, val2) {
var test = $(this).attr(attr);
if (test === val1) {
$(this).attr(attr, val2);
return this;
}
if (test === val2) {
$(this).attr(attr, val1);
return this;
}
// default to val1 if neither
$(this).attr(attr, val1);
return this;
};

Enhance the accessibility of an accordion component by toggling an aria-expanded attribute when the accordion is opened or closed.

.accordion-trigger would be the button that triggers the accordion to open and close on click, and should start with an attribute of aria-expanded="false" that is set within the Webflow Designer. The direct sibling element to the trigger would have the class of .accordion-content and is what is changed with interactions to be hidden/shown and size is set to 0/auto.

For another great accessible accordion example see: https://webflow.com/accessibility/checklist/task/ensure-accordions-are-keyboard-navigable

Creators

Have feedback or a question related to this item? Drop us some feedback!

Curated: 
3.29.21

Similar items

Plot

12.4.24

ARRAY

12.4.24

Crescent Cares

12.3.24

Advent of Prompt

12.3.24

Socket.IO

12.3.24

Custom Slider with GSAP

12.3.24

Scrapps

12.3.24

Brand Process Playbook

12.3.24

Things, Inc.

12.3.24

Tunify

12.1.24

In Tandem Families

12.1.24

Jacob's Cove Resort

12.1.24

Upscayl

12.1.24

Nico Menezes

12.1.24

Elizabeth Goodspeed

12.1.24

330

12.1.24

Pulse

12.1.24

I Can’t Believe They Added AI To The Browser

12.1.24

Logotype

12.1.24

Webflow Custom Props Enhancer

11.26.24

Gumloop

11.26.24

Spellbook

11.24.24

Isocons

11.24.24

Opal

11.22.24

Marimain

11.22.24

Golden Goose

11.22.24
Load more

Bummer, no results

Try a different search/filter combo, or drop us some feedback if there is something missing you would love to see!

Reset filters

Subscribe for updates

Get updates on the latest curated resources and be the first to hear of new features.