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.

I need to select a <p> element that has a nested <a> with a specific class.

The <a> is not always a child of the <p> and may instead be a grandchild. For example:

<p>some text<span><a href="#" class="myclass f5">link</a></span></p>

I need to select the <p> element if it has an <a> with the class f5 anywhere inside.

share|improve this question

1 Answer

up vote 6 down vote accepted

this isn't possible with a css selector (theres nothing like a parent-selector).

maybe you can work around this with javascript - in jquery, for example, you should get your paragraphs with $('p:has(a.f5)') (and then you're free to .addClass() or set .css() on this elements directly).

EDIT::
you might also want to take a look at this other questions on SO (and next time: search before you ask):

share|improve this answer

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.