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.

Can I get element, if it class contains some text? example:

<div class="headerbody"></div>   - match (header)
<div class="headerbottom"></div>   - match (header)
<dov class="text"></div>     - not match (header)
share|improve this question

2 Answers

up vote 6 down vote accepted

you could use contains() in your XPath predicate. like this:

div[contains(@class, 'header')]
share|improve this answer
1  
Agreed. Also, if you're worried about case issues, use translate() on your @class first like so: div[contains(translate(@class, 'ABCDEFG..Z', 'abcdefg..z'))] – JWiley May 11 '12 at 13:02
Perfect! Thank You! – Roman Bats May 11 '12 at 13:40

Using JQuery, you can define a selector to get them this way:

$('div[class*="header"]').val('has header in it!');

See this for more info:

http://api.jquery.com/attribute-contains-selector/

share|improve this answer
2  
-1. Is not XPath – Alohci May 11 '12 at 12:58
Sorry - Misunderstood the question. – Kevin Bedell May 11 '12 at 13:51

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.