Skip to content

Instantly share code, notes, and snippets.

@paul-bjorkstrand
Created August 28, 2014 21:11
Show Gist options
  • Save paul-bjorkstrand/c13b057bc1f6b9e24ed3 to your computer and use it in GitHub Desktop.
Save paul-bjorkstrand/c13b057bc1f6b9e24ed3 to your computer and use it in GitHub Desktop.
jQuery.parents-selector.js
(function($) {
$.expr[":"].parents = $.expr.createPseudo(function(arg) {
return function( elem ) {
return $(elem).parents(arg).length > 0;
};
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment