I have an RSS Feed which returns XML. I am trying to use this in jQuery via an AJAX call:
$.ajax({
url: "https://www.ctvnews.ca/rss/ctvnews-ca-top-stories-public-rss-1.822009",
success: function(data) {
console.log(data);
}
All this does is return the data in XML format. How can I use that? Or convert it JSON data?