[jQuery] xml tag with namespace ???

[jQuery] xml tag with namespace ???

Hello,
I try to parse an RSS feed with JQuery and Ajax plugin,
and i have some trouble to read tag with namespace (like "<span style="font-weight: bold;">dc:creator</span>").
I am unable to capture content of such tag.
Indeed the following query match nothing :
       $.getXML("./rss.xml", function(xml){
                $("creator",xml)...        //match nothing
                $("dc:creator",xml)...    //match nothing (normal)
        });
An other choice, will be to use the getElementsByTagName("creator")
but i don't know how to keep the context with the xml object.
If somebody know a solution, ...
Regards, Bernard
PS : sorry for my englsh
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/