I\'m new to jQuery and would like to parse an XML document.
I\'m able to parse regular XML with the default namespaces but with XML such as:
For Webkit browsers, you can just leave off the colon. So to find <media:content> in an RSS feed for example, you can do this:
<media:content>
$(this).find("content");
My solution (because I use a Php proxy) is to replace : namespace by _ ... so no more namespace issues ;-)
Keep it simple !