The content I am trying to modify has a series of <div>
entries, and within each of these are other <div>
entries. There are no id
tags to help here. What I want the script to do is inspect the content of each of these <div>
entries and look for some text. This will be used to determine whether the whole '' entry is deleted/hidden or not. Is this possible? How?
Below is an example. There are several of these in the page, and I want to delete/hide the ones where the text inside the <div class="foo bar">
tags say "Yes." So in this example, this whole thing would get deleted/hidden.
<div class="entry">
<div class="fooPhoto"><a href="Addfoo.jsp?tid=954102"><img class="person" src="http://static.barfoo.com/images/site/icons/dude.png" border="0" width="24" height="24" onerror="this.src='images/site/icons/dude.png'" title="Photo Unavailable" alt="Photo Unavailable" ></a></div>
<div class="fooAvg">4.7</div>
<div class="foo bar">Yes</div>
<div class="fooShare">
<a class="shareEmail" href="referral.jsp?sid=882&tid=954102&pgid=3">Share using email</a>
</div>
</div><!-- closes entry -->