JSFiddle - React, Tailwind, and code Playground
by A B
HTML
<button id="GetRSS">Fetch</button>
JavaScript
$("#GetRSS").click(function() {
alert("Ciao");
$.ajax({
url: "http://weblogs.asp.net/scottgu/rss.aspx",
type: "GET",
success: function(xml) {
alert("Ciao");
//var item = $(xml).find('item').children();
//$(item).children().each(function() {
// var title = $(item).children().find('title').text();
// alert(title);
} //);
}
});
});