> This is how I would normally use js to call the xml:
> var text= xmldoc.getElementsByTagName("text")[0];

jQuery can work its magic on your xml document, just pass the doc as
the context arg:

var tagValue = $('item', xmlDoc).attr('tag');

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to