const xmlhttp = new XMLHttpRequest(); xmlhttp.onload = function() { const myJason = JSON.parse(this.responseText); var text = ""; text += `
Last edited ${myJason[0].text}
`; text += `Back To Top` document.getElementById("foot").innerHTML = text; return; } xmlhttp.open("GET", "https://thaddiusstemp.com/menu_info.json"); xmlhttp.send();