RssChangelogs.js

From Wiki The-West EN
Jump to navigation

$.ajax({

 url: "https://forum.the-west.net/index.php?forums/the-western-star.2/index.rss",
 dataType: "xml",
 success: function(data) {
   $(data).find("item").each(function() {
     var title = $(this).find("title").text();
     if (title.match(/^Update to version \d+\.\d+$/)) {
       console.log(title);
     }
   });
 },
 error: function(xhr, status, error) {
   console.log("Error retrieving RSS feed:", error);
 },
 beforeSend: function(xhr) {
   xhr.overrideMimeType("text/xml");
 }

});