This site is mobile accessible. Press the "Tap Here" button to use a different font-size.
Smartphone icons created by Freepik - Flaticon
// create XMLHttpEwquest const xmlhttp = new XMLHttpRequest(); xmlhttp.onload = function() { // create and display myObj.name JS object const myObj = JSON.parse(this.responseText); document.getElementById("demo").innerHTML = myObj.name; }; // define the XMLHttpRequest xmlhttp.open("GET", "json_demo.txt"); xmlhttp.send();