views:

25

answers:

2

I need to parse xml and main element names varies and I only need few details form XML, what is very complicated. Are there any way to parse XML with jQuery like seletors?

+1  A: 

You might be looking for XQuery.

http://en.wikipedia.org/wiki/XQuery

zwip
+1  A: 

I solved this with using HTML parser jsoup (http://jsoup.org/).

newbie