Created
February 23, 2021 12:36
-
-
Save ankedsgn/5fcf423e6a19441cd23ed9d17c3ac4e2 to your computer and use it in GitHub Desktop.
check if checkbox is checked + do something with parent
This file contains 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
$('.training-index__filters-form-inner .form-checkbox').each(function () { | |
if (this.checked) { | |
// console.log('YES'); | |
$(this).parents('.fieldset-wrapper').show(); | |
$(this).parents('fieldset legend').toggleClass('is-open'); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment