Skip to content

Instantly share code, notes, and snippets.

@macu
Created March 27, 2014 02:22
Show Gist options
  • Select an option

  • Save macu/9798705 to your computer and use it in GitHub Desktop.

Select an option

Save macu/9798705 to your computer and use it in GitHub Desktop.
Like jQuery's "closest" but for children, depending on a selector that matches the desired parent.
var $container = $(this);
var $children = $this.find('.some-criteria').filter(function() {
return $(this).closest('.my-criteria').is($container);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment