Skip to content

Instantly share code, notes, and snippets.

@lutzissler
Created August 6, 2013 07:30
Show Gist options
  • Save lutzissler/6162794 to your computer and use it in GitHub Desktop.
Save lutzissler/6162794 to your computer and use it in GitHub Desktop.
Filter() and find() combined.
// From http://forum.jquery.com/topic/jquery-jquery-way-for-filtering-self-all-children
$.fn.findAndSelf = function(selector) {
return this.find(selector).andSelf().filter(selector);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment