Skip to content

Instantly share code, notes, and snippets.

@niorad
Created April 20, 2016 18:47
Show Gist options
  • Save niorad/a12bb4f87c6012f7f31e5d6cbb951ab1 to your computer and use it in GitHub Desktop.
Save niorad/a12bb4f87c6012f7f31e5d6cbb951ab1 to your computer and use it in GitHub Desktop.
Minimal jQuery-Accordion
$('[data-accordion-toggler]').on("click", function () {
$(this).next().toggle();
$('[data-toggle-content]').not($(this).next()).hide();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment