[jQuery] find() in namespaced tags
Hello,
I am trying to get the content of a namespaced tag like:
<tag>
<ns:tag>my content</ns:tag>
$("tag").each (
function () {
$(this).find("ns:tag");// is void
$(this).find("tag");// is void
$(this).find("NS:TAG");// is void...tried 'cause I noticed that
Firefox shows it uppercased in the DOM inspector
})
I do I get to 'my content'?
Thanks in advance,
-c.
)