I'm trying to retrofit a page to read from XML rather than the DOM, and I'd rather not use $(xml).find('blah') for every single call, and I was wondering if there was a way to point jQuery at xml, rather than the DOM.
For instance, I'd like to be able to navigate my xhtml with the jQuery method as such: $('blah').whatever
Is this possible?