Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a jQuery function to select all DOM elements of a certain class that are outside the parent(s) of an element selected with $(this)?

Thanks,

James

share|improve this question
By parents. do you mean all the ancestors? Because everything will be contained within an ancestor of any given element. Short of there being multiple document trees. – Eric Dec 10 '10 at 19:17

1 Answer

up vote 2 down vote accepted

You can use .not() to exclude the ancestors (gotten via .parents()), like this:

$(".class").not($(this).parents())
share|improve this answer
+1 Beat me to it. :( – Richard Marskell - Drackir Dec 10 '10 at 18:36
Thank you :-) this works perfectly. +1 for uber simple answer! – Bojangles Dec 10 '10 at 18:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.