Skip to content

Instantly share code, notes, and snippets.

@kabeer11000
Created June 9, 2020 22:49
Show Gist options
  • Save kabeer11000/1abc7b81db055b76866c0a143c1b53e6 to your computer and use it in GitHub Desktop.
Save kabeer11000/1abc7b81db055b76866c0a143c1b53e6 to your computer and use it in GitHub Desktop.
$.ajax('https://rss.app/feeds/HRB8LpHHEcj0nPz6.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