I'm trying to create some xpath that will find all a tags that do not contain img tags, so that something such as

<a href="http://aol.com">link</a>

matches, but

<a href="http://yahoo.com"><img src="http://yahoo.com/logo.png"></a>

does not.

Of course I could do this in a two-part search but I'm sure there must be some way to do this with xpath.

link|improve this question

75% accept rate
feedback

1 Answer

//a[not(img)]

Try and avoid the // if you can, though. Also note this will only exclude as that directly contain imgs.

link|improve this answer
2  
XPath expression for "any a element not having an img descendant element": //a[not(.//img)] – user357812 Mar 29 '11 at 18:57
feedback

Your Answer

 
or
required, but never shown

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