[jQuery] Support to xml namespaces
Hello,
I am trying to figure out how to get jQuery work on namespaced xml
elements.
I am parsing an rss feed in rdf format, like this one:
http://del.icio.us/rss/recent
My success function is:
success: function(xml){
$(xml).find('item').each (
function () {
var titleTag = $(this).find('title')[0]; // this works
var subj = $(this).find('subject')[0]; // this
does not work in ie6
}
)}
The finding of the subject does not work because (i suppose) it is
namespaced like this:
<dc:subject>foo bar</dc:subject>
I googled a bit. Seems a known problem.
getElementsByTagNameNS is not implemented in ie.
find("dc:subject") should not work, by documentation.
Any hint? What can i do? Just wait for a new release? Should I open a
ticket?
Thanks in advance,
-c.