JSFiddle - React, Tailwind, and code Playground

JavaScript

$.ajax({
    type: "GET",
    url: "http://v.snagfilms.com/films/cc/Underground_Poker_SMPTE.xml",
    success: function(response) {        
        alert("in sucess!");
        console.log("sucess", response);      
    },
    error: function(response) {
        alert("in error!");
        console.log("error", response);        
    }
});