Created
June 10, 2020 00:06
-
-
Save kabeer11000/bbe0bbeec38d6e7479d6b9a338203534 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://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