XML:
-
Some title
Your XML uses a namespace.
See this similar Stack Overflow question regarding namespaces. You have to escape the colon:
jQuery XML parsing with namespaces
Got a correction for you.. and your Namespace SOLUTION! You need to escape the namespace ":" properly with \. I have show the example below which works with the Itunes podcast XML feeds.
item.description = jQuery(this).find("[nodeName=itunes\\:summary]").eq(0).text();