what is the standard way to get information from an itunes extension tag in a rss feed?
For example I have a feed that includes <itunes:duration>5:04</itunes:duration>
I get an error if I try to parse with:
duration = items[i].getElementsByTagName("itunes:duration")[0].firstChild.nodeValue;
This code generates:
items[i].getElementsByTagName("itunes:duration")[0] has no properties.

Reply With Quote


