JQuery Fetch Multiple RSS feeds
问题 How can I fetch multiple RSS sources and display them in lets say a Div for each source? Something like this would almost do it, but I dont know how to feetch multiple RSS sources: $(function(){ url = 'http://www.thetutlage.com/rss.xml'; $.ajax({ type: "GET", url: document.location.protocol + '//ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=1000&callback=?&q=' + encodeURIComponent(url), dataType: 'json', error: function(){ alert('Unable to load feed, Incorrect path or invalid feed');