JSFiddle - React, Tailwind, and code Playground
by Yakir Perlin
JavaScript
$.ajax({
url: "https://beitalmahdy.000webhostapp.com/mysite/photos/",
success: function(data){
$(data).find("td > a").each(function(){
// will loop through
alert("Found a file: " + $(this).attr("href"));
});
}
});