Created
April 20, 2016 18:47
-
-
Save niorad/a12bb4f87c6012f7f31e5d6cbb951ab1 to your computer and use it in GitHub Desktop.
Minimal jQuery-Accordion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('[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