I have the following XML that I need to be able to pull specific fields from:\[code\]<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices"><id>Cases</id><title type="text">CaseList</title><updated>2013-04-04T15:32:56Z</updated><author><name/></author><link href="http://stackoverflow.com/questions/15817891/CaseList" rel="self" title="CaseList"/><entry> <id>291</id> <title type="text">CaseList('291')</title> <updated>2013-04-04T15:32:56Z</updated> <category term="S.Cases" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/> <content type="application/xml"> <mroperties> <d:case_id>291</d:case_id> <d:case_title>Global Case</d:case_title> <d:case_type>Meso</d:case_type> </mroperties> </content></entry><entry> <id>291</id> <title type="text">CaseList('292')</title> <updated>2013-04-04T15:38:56Z</updated> <category term="S.Cases" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/> <content type="application/xml"> <mroperties> <d:case_id>292</d:case_id> <d:case_title>Global Case 2</d:case_title> <d:case_type>Meso 2</d:case_type> </mroperties> </content></entry></feed>\[/code\]I've tried almost everything, but I feel that there is a core XML concept I'm missing that would help me extract nodes such as d:case_id. Is there a simple way of pulling out one or more nodes using Javascript? The other namespace questions don't include a namespace within another namespace... here, the values I'm interested in are behind mroperties.