Andromeda
Andromeda

Reputation: 12897

jQuery and XPath XML parsing

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

Answers (1)

gargantuan
gargantuan

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

Related Questions