Reputation: 12897
I want to parse XML using jQuery. Is it possible to parse using XPath? Are there any functions for that in jQuery?
Upvotes: 12
Views: 15489
Reputation: 8944
Not directly, but you can use jQuery selectors to achieve the same thing.
Previous versions (1.2) at: http://docs.jquery.com/DOM/Traversing/Selectors
Upvotes: 10