Welcome aboard! We are happy you are here and wish you good net-raft!
<!DOCTYPE html>
<html>
<body>
<table id="demo" border='1'></table>
<script>
var myObj, i, x = "";
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
myObj = JSON.parse(this.responseText);
for (i in myObj) {
document.getElementById("demo").innerHTML = document.getElementById("demo").innerHTML + "<tr><td>" + myObj[i] + "</td></tr>";
}
}
};
xmlhttp.open("GET", "/project/lolo/sl_x6SUoG1fWV202115143/file.json", true);
xmlhttp.send();
</script>
</body>
</html>
The most helpful JAVASCRIPT solutions
How can I get the last day and the next day in javascript ?JAVASCRIPT Click to see more ... 6K 508