How to parse an RSS feed using JavaScript (External Domain)?
问题 Question I need to parse an RSS feed and display the parsed details in an HTML page. Solution I Found How to parse an RSS feed using JavaScript? is a very similar question and I followed it. Using above question, I build the following code. <script> $(document).ready(function() { //feed to parse var feed = "https://feeds.feedburner.com/raymondcamdensblog?format=xml"; $.ajax(feed, { accepts:{ xml:"application/rss+xml" }, dataType:"xml", success:function(data) { //Credit: http://stackoverflow