[jQuery] Problems parsing XML with jQuery
<span style="border-collapse:collapse;white-space:pre">I'm trying to parse this little XML document here: <a href="http://pastebin.com/m5f0e4300" target="_blank">
http://pastebin.com/m5f0e4300</a> with this code: </span><div>
<span class="Apple-style-span" style="border-collapse: collapse; white-space: pre;"><span class="Apple-style-span" style="border-collapse: separate; white-space: pre-wrap; "><span class="Apple-style-span" style="font-family: 'courier new', monospace;"><span class="Apple-style-span" style="font-size: x-small;">function(response)
{
console.log(response.responseText)
console.log(response.responseXML)
try
{
console.log("Try and find nafn")
console.log($j(response.responseXML).find("nafn").text())
console.log($j(response.responseXML).find("LM:nafn").text())
}
catch(e)
{
console.log("WMS GetFeatureInfo XML Error")
}
}</span></span></span>
</span></div><div><span class="Apple-style-span" style="border-collapse: collapse; white-space: pre;">(JS code: <a href="http://pastebin.com/m5efc6214" target="_blank">http://pastebin.com/m5efc6214</a> )</span></div>
<div><span style="border-collapse:collapse;white-space:pre">And for some reason I get the following from the Firebug log:</span>
<div><span style="border-collapse:collapse;white-space:pre">
</span></div><div><span style="border-collapse:collapse;white-space:pre">[The xml text]</span></div>
<div><span style="border-collapse:collapse;white-space:pre"><a>Document [A Document object of the XML]</a></span></div><div><span style="border-collapse:collapse;white-space:pre"><a>Try and find nafn</a>
</span></div>
<div><span style="border-collapse:collapse;white-space:pre">[Empty line]</span></div>
<div><span style="border-collapse:collapse;white-space:pre">[Empty line]
</span></div><div><span style="border-collapse:collapse;white-space:pre">
</span></div><div><span style="border-collapse:collapse;white-space:pre">Instead of those Empty lines I would like to get "Kópavogur".</span></div>
<div><span style="border-collapse:collapse;white-space:pre">Anybody have any idea what I'm doing wrong?</span></div>
<div><span style="border-collapse:collapse;white-space:pre">
</span></div><div><span style="border-collapse:collapse;white-space:pre">Kind regards from Iceland,</span></div>
<div><span style="border-collapse:collapse;white-space:pre">gzur</span></div><div>
</div><div>
</div>
</div>