XML or RSS file with json or jsonp?

reiss

New Member
I was wondering if this can be done. A little explanation:I have a customer review system. Every new review can be seen by Google as new content. Therefore I have to dynamically load the XML or RSS feed into my html page. I have no access to the server to use PHP, everything have to be done with jquery, AJAX and/or JSON(P). If I make a simple request like so (one of the url's) I get a syntax error.:\[code\] $(document).ready(function(){ var url ="https://www.abc.com/widgetfeed.php?company=1234"; // this is a RSS feed var url ="https://www.abc.com/xml/recent_company_reviews.xml?connectorcode=1234&company_id=1234 // this is a XML feed $.getJSON(url+"&callback=?", function(data){ }); });\[/code\]IS this even possible? I've read about YQL and so on but that isn't a solution for me! Does anyone know how to do this, with what or can tell me if this is even possible let me know. Thanks
 
Back
Top