Created
June 9, 2020 22:49
-
-
Save kabeer11000/1abc7b81db055b76866c0a143c1b53e6 to your computer and use it in GitHub Desktop.
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
$.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