You can use the technique outlined in my blog post Unsigned Yahoo Query Langauge Guide
You will query the XML data table with yql status as follows:
select * from xml
where url="http://path/to/xml
Then you add the script tag to your html (can be done with document.createElement ('script')) with src http://query.yahooapis.com/v1/public/yql?q= {your yql here} & format = json & callback = {your function here}, where {your yql here} replaces the URI-encoded version of your yql statment. source
share