Skip to content

Instantly share code, notes, and snippets.

@kabeer11000
Created June 10, 2020 00:06
Show Gist options
  • Save kabeer11000/bbe0bbeec38d6e7479d6b9a338203534 to your computer and use it in GitHub Desktop.
Save kabeer11000/bbe0bbeec38d6e7479d6b9a338203534 to your computer and use it in GitHub Desktop.
$.ajax('https://sites.google.com/site/xgames6996/home/posts.xml', {
accepts: {
xml: "application/rss+xml"
},
dataType: "xml",
success: function(data) {
$(data)
.find("item")
.each(function() {
const el = $(this);
console.log(el.find('link').text());
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment