tags:

views:

30

answers:

1

I have a XML file that has lot of elements with a particular attribute say href. Is there any x query to get all the nodes that has href = "ABC.jpg" ? If not what is the best way to do it ?

+1  A: 
//*[@href = 'ABC.jpg']
Nick Jones
Thankyou so much.. It worked
Ananth