vote up 2 vote down star

Using JavaScript/Ajax?

I'm trying to extract values from:

<yweather:astronomy sunrise="6:34 am"   sunset="8:38 pm"/>

Looking for something like:

var response = transport.responseXML.getElementsByTagName("channel");
sunrise = response[0].getElementsByTagName("yweather:astronomy").item(0).Attributes["sunrise"].Value;

But nothing works so far. :'( Thanks.

flag

1 Answer

vote up 3 vote down

There is a special version of getElementsByTagName for namespaces: getElementsByTagNameNS.

For example:

var response = transport.responseXML.getElementsByTagName("channel");
var sunrise = response[0].getElementsByTagNameNS("[Namespace URI]", "astronomy")[0].getAttribute("sunrise");

...where [Namespace URI] is the URI of the yweather namespace.

Steve

link|flag
2  
Not supported by IE, but correct otherwise – annakata Jul 5 at 8:14
@annakata: Out of interest, how can do you do it in IE? – Steve Harrison Jul 5 at 8:17
I think you can just use getElementsByTagName("yweather:astronomy") with IE. Also, Google feeds API has a cross browser implementation. Maybe you can use that, or something like it: code.google.com/apis/ajaxfeeds/… – dylanfm Jul 5 at 8:45
In MSXML, you can set the "SelectionNamespaces" property on the XML DOMDocument object, then use the non-standard "selectNodes" (or "selectSingleNode") method with an XPath selector. See xml.com/pub/a/2002/06/05/msxml4.html for an example. – NickFitz Jul 5 at 18:54
@NickFitz: Ah, I see. Thanks! – Steve Harrison Jul 5 at 22:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.