No matter what I try, I cannot find an XML node in an .ajax response.\[code\]<?xml version="1.0" encoding="utf-8"?><ctatt> <tmst>20121209 09:58:14</tmst> <errCd>0</errCd> <errNm /> <eta> <staId>40970</staId> <stpId>30188</stpId> <staNm>Cicero</staNm> <stpDe>Service toward Forest Park</stpDe> <rn>105</rn> <rt>Blue</rt> <destSt>0</destSt> <destNm>Forest Park</destNm> <trDr>5</trDr> <prdt>20121209 09:57:40</prdt> <arrT>20121209 10:00:40</arrT> <isApp>0</isApp> <isSch>0</isSch> <isDly>0</isDly> <isFlt>0</isFlt> <flags /> </eta></ctatt>\[/code\]\[code\]$(response).find('ctatt').find('eta').each(function(){});\[/code\] will not find the ela nodes. It never enters the each loop. \[code\]$(response).find('ctatt').find('tmst')\[/code\] or \[code\]$(response).find('ctatt').find('errCd')\[/code\] does enter the each loop. I do not understand why it can't parse \[code\]$(response).find('ctatt').find('eta')\[/code\]