Last active
September 9, 2020 10:09
-
-
Save Korveld/e39570257ac748f231e249323657a76d to your computer and use it in GitHub Desktop.
Faq accordion script
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
| jQuery(document).ready(function ($) { | |
| var part = $('.part') | |
| var partHeader = $('.part__header') | |
| var partContent = $('.part__content') | |
| partHeader.on('click', function (e) { | |
| e.preventDefault() | |
| var partClose = function () { | |
| part.removeClass('is-active') | |
| partContent.slideUp(300) | |
| } | |
| if ( $(this).parent().hasClass('is-active') ) { | |
| partClose() | |
| } else { | |
| partClose() | |
| $(this).parent().addClass('is-active') | |
| $(this).parent().find('.part__content').slideDown(300) | |
| } | |
| }) | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment