If you have the xml below in $(xml), you would get droopy using:
$(xml).find("animal").find("dog").find("beagle").text()
Is there an equivalent way in jQuery to use xpath like $(xml).xpathfind("/animal/dog/beagle").text()?
<animal>
<dog>
<beagle>
droopy
</beagle>
...