Accordion-Shortcodes
Accordion-Shortcodes copied to clipboard
Hide all content by default with display: none
This will remove the flash of seeing all accordion item's content when the page is loading. Then swap the plugin to openItem()
instead of closeItem()
on load.
Use the no-js
CSS class to force them open in CSS:
.no-js .c-accordion__content {
display: block !important;
}