Skip to content

Instantly share code, notes, and snippets.

@karenpayneoregon
Created February 24, 2025 17:47
Show Gist options
  • Save karenpayneoregon/e9c3227b1c53197922ecdffa56de492a to your computer and use it in GitHub Desktop.
Save karenpayneoregon/e9c3227b1c53197922ecdffa56de492a to your computer and use it in GitHub Desktop.
Provides JavaScript helper methods to expand and collapse all items in a Bootstrap 5.3 accordion
function expandAll() {
document.querySelectorAll('.accordion-collapse').forEach(item => {
let bsCollapse = new bootstrap.Collapse(item, { toggle: false });
bsCollapse.show();
});
}
function collapseAll() {
document.querySelectorAll('.accordion-collapse').forEach(item => {
let bsCollapse = new bootstrap.Collapse(item, { toggle: false });
bsCollapse.hide();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment