Skip to content

Instantly share code, notes, and snippets.

@ankedsgn
Created February 23, 2021 12:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ankedsgn/5fcf423e6a19441cd23ed9d17c3ac4e2 to your computer and use it in GitHub Desktop.
Save ankedsgn/5fcf423e6a19441cd23ed9d17c3ac4e2 to your computer and use it in GitHub Desktop.
check if checkbox is checked + do something with parent
$('.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