In below example I want to find the values of author, year & price using the value ‘Harry potter’ as my input in jquery
<bookstore>
<book>
<title>Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
</book>
<book>
<title>Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
</bookstore>
2
Answers
Use Powershell
Results
There is many ways you can attack it. Easist way is to use jQuery to convert it to XML (if you did not have it in that format already). You can then loop over it and find the titles and filter on those that match the same text. After that you can get the book and loop over the children to get the properties you are after.