Created
March 5, 2014 16:02
-
-
Save cmbaughman/9370106 to your computer and use it in GitHub Desktop.
Parse RSS feed as JSON from client using Google API
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var rssUrl = "http://www.exploit-db.com/rss.xml"; | |
function parseRSS(url, callback) { | |
$.ajax({ | |
url: document.location.protocol + '//ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=10&callback=?&q=' + encodeURIComponent(url), | |
dataType: 'json', | |
success: function(data) { | |
callback(data.responseData.feed.entries); | |
} | |
}); | |
} | |
html = ""; | |
parseRSS(rssUrl, function(rss) { | |
for(i = rss.length-1; i >=0; i--) { | |
html += "<p><a href='" + rss[i].link + "'>" + rss[i].title + "</a></p>"; | |
} | |
$("div#target").html(html); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That's awesome! Thanks everyone!