↧
Answer by AndroidNoobie for Get enclosure URL from RSS feed in JavaScript
This is how I ended up getting the enclosure url: $(document).ready(function() { var feed = "https://crossorigin.me/https://www.spreaker.com/show/1720272/episodes/feed"; $.ajax(feed, { accepts: { xml:...
View ArticleGet enclosure URL from RSS feed in JavaScript
I've tried the other answers on this forum, but without any luck. I'm trying to extract the enclosure URL for each entry from an RSS feed (it contains the direct link of the mp3 audio), so I can...
View Article