Is there way to find sibling element values using a value of a particular element as input in xml using jquery
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>…